SmartSheet API を v1 から v2 に更新しようとしていますが、以下のコードで問題が発生しています。
コードは選択したシートの行を返しますが、行内のすべてのセルの「ColumnType」プロパティは NULL です。
これを返すには、それを包含として指定する必要があることを知っています-私は持っていると信じています。
Dim sheet As Sheet = smartsheet.SheetResources.GetSheet(curSheet.Id, New RowInclusion() {RowInclusion.COLUMN_TYPE, RowInclusion.COLUMNS}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)
For Each Row As Row In sheet.Rows
If Row.ParentRowNumber Is Nothing Then
Dim i As Integer = 0
Dim colType As ColumnType
If Not Row.Cells(i).ColumnType = ColumnType.TEXT_NUMBER Then
'Do some stuff here...
End if
Next
どんな助けでも素晴らしいでしょう。
ありがとう、スティーブ