ListObject.PutCellValue

PutCellValue(int, int, object)

Put the value to the cell.

public void PutCellValue(int rowOffset, int columnOffset, object value)
ParameterTypeDescription
rowOffsetInt32The row offset in the table.
columnOffsetInt32The column offset in the table.
valueObjectThe cell value.

See Also


PutCellValue(int, int, object, bool)

Put the value to the cell.

public void PutCellValue(int rowOffset, int columnOffset, object value, bool isTotalsRowLabel)
ParameterTypeDescription
rowOffsetInt32The row offset in the table.
columnOffsetInt32The column offset in the table.
valueObjectThe cell value.
isTotalsRowLabelBooleanIndicates whether it is a label for total row,only works for total row. If False and this row is total row, a new row will be inserted.

See Also