XlsWorksheet
GetBoolean Method
|
Gets bool value from cell.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public bool GetBoolean(
int row,
int column
)
Public Function GetBoolean (
row As Integer,
column As Integer
) As Boolean
public:
virtual bool GetBoolean(
int row,
int column
) sealed
abstract GetBoolean :
row : int *
column : int -> bool
override GetBoolean :
row : int *
column : int -> bool
Parameters
-
row
-
Type:
System
Int32
Represents row index.
-
column
-
Type:
System
Int32
Represents column index.
Return Value
Type:
Boolean
Returns found bool value. If cannot found returns false.
Implements
IWorksheet
GetBoolean(Int32, Int32)
See Also