XlsWorksheet
SetCellValue Method (Int32, Int32, String)
|
Sets value 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 SetCellValue(
int rowIndex,
int columnIndex,
string stringValue
)
Public Sub SetCellValue (
rowIndex As Integer,
columnIndex As Integer,
stringValue As String
)
public:
void SetCellValue(
int rowIndex,
int columnIndex,
String^ stringValue
)
member SetCellValue :
rowIndex : int *
columnIndex : int *
stringValue : string -> unit
Parameters
-
rowIndex
-
Type:
System
Int32
Row index
-
columnIndex
-
Type:
System
Int32
Column index.
-
stringValue
-
Type:
System
String
Value to set.
See Also