IWorksheet
SetValue Method
|
Sets value in the specified cell.
Namespace:
Spire.Xls.Core
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
void SetValue(
int iRow,
int iColumn,
string value
)
Sub SetValue (
iRow As Integer,
iColumn As Integer,
value As String
)
void SetValue(
int iRow,
int iColumn,
String^ value
)
abstract SetValue :
iRow : int *
iColumn : int *
value : string -> unit
Parameters
-
iRow
-
Type:
System
Int32
One-based row indexof the cell to set value.
-
iColumn
-
Type:
System
Int32
One-based column index of the cell to set value.
-
value
-
Type:
System
String
Value to set.
See Also