XlsWorksheet
SetBoolean Method
|
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 SetBoolean(
int iRow,
int iColumn,
bool value
)
Public Sub SetBoolean (
iRow As Integer,
iColumn As Integer,
value As Boolean
)
public:
virtual void SetBoolean(
int iRow,
int iColumn,
bool value
) sealed
abstract SetBoolean :
iRow : int *
iColumn : int *
value : bool -> unit
override SetBoolean :
iRow : int *
iColumn : int *
value : bool -> 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
Boolean
Value to set.
Implements
IWorksheet
SetBoolean(Int32, Int32, Boolean)
See Also