XlsWorksheet
SetText Method
|
Sets text in the specified cell.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public void SetText(
int iRow,
int iColumn,
string value
)
Public Sub SetText (
iRow As Integer,
iColumn As Integer,
value As String
)
public:
virtual void SetText(
int iRow,
int iColumn,
String^ value
) sealed
abstract SetText :
iRow : int *
iColumn : int *
value : string -> unit
override SetText :
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
Text to set.
Implements
IWorksheet
SetText(Int32, Int32, String)
See Also