Finds the all cells with specified string value.
Namespace:
Spire.Xls
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public CellRange[] FindAll(
string findValue,
FindType flags,
ExcelFindOptions findOptions
)
Public Function FindAll (
findValue As String,
flags As FindType,
findOptions As ExcelFindOptions
) As CellRange()
public:
array<CellRange^>^ FindAll(
String^ findValue,
FindType flags,
ExcelFindOptions findOptions
)
member FindAll :
findValue : string *
flags : FindType *
findOptions : ExcelFindOptions -> CellRange[]
Parameters
-
findValue
-
Type:
System
String
Value to search.
-
flags
-
Type:
Spire.Xls
FindType
Type of value to search.
-
findOptions
-
Type:
Spire.Xls
ExcelFindOptions
Way to search.
Return Value
Type:
CellRange
All found cells, or Null if value was not found.
See Also