Click or drag to resize

Workbook FindBool Method

Finds the cell with the input bool.
Examples
This sample shows how to find the first cell with specified bool value:
<para>//Create workbook</para><para>Workbook workbook = new Workbook();</para><para>workbook.LoadFromFile("Sample.xlsx");</para><para>//Find cell with specified bool value</para><para>IXLSRange result = workbook.FindBool(true);</para>

Namespace: Spire.Xls
Assembly: Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public CellRange FindBool(
	bool boolValue
)

Parameters

boolValue
Type: System Boolean
Bool value to search for.

Return Value

Type: CellRange
Found range.
See Also