我正在尝试将我的SmartSheet API从v1更新为v2,并且在下面的代码中遇到了一些困难。
代码返回所选工作表的行,但行中所有Cell的“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
任何帮助都会很棒。
谢谢, 史蒂夫