Click or drag to resize

IWorkbook FindAll Method (String, FindType)

This method seraches for the all cells with specified string value.
Examples
This sample shows how to find all cells with specified string value:
<para>//Create workbook</para><para>Workbook workbook = new Workbook();</para><para>workbook.LoadFromFile("Sample.xlsx");</para><para>//Find cells with specified string value</para><para>string value = "value";</para><para>CellRange[] result = workbook.FindAllString(value , false , false);</para>

Namespace: Spire.Xls.Core
Assembly: Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
CellRange[] FindAll(
	string findValue,
	FindType flags
)

Parameters

findValue
Type: System String
Value to search.
flags
Type: Spire.Xls FindType
Type of value to search.

Return Value

Type: CellRange
All found cells, or Null if value was not found.
See Also