通过C#SDK检索工作表时,所有单元格值都为null。是否存在API的访问级别或C#SDK是否存在错误?我可以获得列名称和ID很好。
SmartsheetClient ss = new SmartsheetBuilder().SetAccessToken(myToken).Build();
long sheet_ID = 0000000000000000;
Sheet sSheet = ss.SheetResources.GetSheet(sheet_ID, null, null, null, null, null, null, null);
lblFeedback.Text = "Sheet: " + sSheet.Name + " <br>Rows: " + sSheet.Rows.Count.ToString();
工作正常,所以我知道我正在访问我想要的工作表,https://github.com/smartsheet-samples/csharp-read-write-sheet/blob/master/csharp-read-write-sheet/Program.cs
中的示例列映射也是如此...然而
Cell completedCell = getCellByColumnName(r, "Completed", columnMap);
string cellValue = completedCell.DisplayValue;
cellValue为null。 除ColumnId之外的任何单元属性都返回null。我做错了什么?
答案 0 :(得分:0)
你的细胞有什么价值?
建议: