XlsRange
FindAll Method (Double, FindType)
|
Finds all occurrences of the 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(
double findValue,
FindType flags
)
Protected Function FindAll (
findValue As Double,
flags As FindType
) As CellRange()
protected:
array<CellRange^>^ FindAll(
double findValue,
FindType flags
)
member FindAll :
findValue : float *
flags : FindType -> CellRange[]
Parameters
-
findValue
-
Type:
System
Double
The value to search for.
-
flags
-
Type:
Spire.Xls
FindType
The find options to use.
Return Value
Type:
CellRange
An array of CellRange objects representing the locations where the value was found.
See Also