ES2Spreadsheet.SetCell

public void SetCell(int col, int row, object value)

Parameters

col The column of the cell we want to set.

row

The row of the cell we want to set.

value

The value we want to set the cell to, using ToString() to get the value as a string.

Description

Sets a cell at the given location to this value. If the value is not a string, it will use ToString() to get the string representation of the value.

C#

JS