我使用智能表C#SDK编写了setCellValue方法,以在给定行索引,列索引和值的情况下将值写入单元格。当单元格中已有一个值时,该方法可以正常工作,但是当单元格为空时,该方法将不起作用。
public void setCellValue(int rowIndex, int columnIndex, String value, Boolean setCellDisplayValue = true)
{
Cell cellOld = getCell(rowIndex, columnIndex);
Cell cellNew = new Cell
{
Value = value,
DisplayValue = value
};
if (true == setCellDisplayValue) {
cellNew.DisplayValue = value;
}
if (null != cellOld)
{
cellNew.ColumnId = cellOld.ColumnId;
}
var listOfNewCells = new List<Cell>();
listOfNewCells.Add(cellNew);
Row rowNew = new Row
{
Cells = listOfNewCells
};
Row rowOld = sheetAPITest.GetRowByRowNumber(rowIndex);
if (null != rowOld)
{
rowNew.Id = rowOld.Id;
}
var listOfNewRows = new List<Row>();
listOfNewRows.Add(rowNew);
smartsheetClient.SheetResources.RowResources.UpdateRows(sheetIdAPITest, listOfNewRows);
}
我还写了一个辅助方法getCell。
public Cell getCell(int rowIndex, int columnIndex)
{
Row row = sheetAPITest.GetRowByRowNumber(rowIndex);
if (null == row)
{
return null;
}
Column column = sheetAPITest.GetColumnByIndex(columnIndex);
if (null == column)
{
return null;
}
return row.Cells.First(c => c.ColumnId == column.Id);
}
问题似乎是当行中没有任何值时,sheetAPITest.GetRowByRowNumber(rowIndex)返回null。我需要该行,因为我需要使用行ID来创建包含内容的新行。
我想念什么?有什么想法可以解决这个问题吗?也许有更好的方法?预先感谢。
答案 0 :(得分:2)
您可以使用Add Rows方法添加新行并填充该行中的一个或多个单元格。
请注意,默认情况下,添加行方法会将新行添加到工作表的末尾,但是您可以通过specifying row location更改每行的默认行为。
下面的代码示例在指定工作表的顶部添加2个新行,并在每个行中填充2个单元格:
// Specify cell values for first row
Cell[] cellsA = new Cell[] {
new Cell
{
ColumnId = 7960873114331012,
Value = true
},
new Cell
{
ColumnId = 642523719853956,
Value = "New status"
}
};
// Specify contents of first row
Row rowA = new Row
{
ToTop = true,
Cells = cellsA
};
// Specify cell values of second row
Cell[] cellsB = new Cell[] {
new Cell
{
ColumnId = 7960873114331012,
Value = true
},
new Cell
{
ColumnId = 642523719853956,
Value = "New status"
}
};
// Specify contents of second row
Row rowB = new Row
{
ToTop = true,
Cells = cellsB
};
// Add rows to sheet
IList<Row> newRows = smartsheet.SheetResources.RowResources.AddRows(
2331373580117892, // long sheetId
new Row[] { rowA, rowB } // IEnumerable<Row> rowsToAdd
);