XlsRange
FindAll Method (String, FindType, ExcelFindOptions)
|
Finds all occurrences of a specified value within the CellRange.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
protected CellRange[] FindAll(
string findValue,
FindType flags,
ExcelFindOptions findOptions
)
Protected Function FindAll (
findValue As String,
flags As FindType,
findOptions As ExcelFindOptions
) As CellRange()
protected:
array<CellRange^>^ FindAll(
String^ findValue,
FindType flags,
ExcelFindOptions findOptions
)
member FindAll :
findValue : string *
flags : FindType *
findOptions : ExcelFindOptions -> CellRange[]
Parameters
-
findValue
-
Type:
System
String
The value to find.
-
flags
-
Type:
Spire.Xls
FindType
The type of search to perform.
-
findOptions
-
Type:
Spire.Xls
ExcelFindOptions
The options to use during the search.
Return Value
Type:
CellRange
An array of CellRange objects representing the locations of the found values.
See Also