Worksheet
FindAllString Method (String, Boolean, Boolean)
|
Finds the cell with the input string.
Namespace:
Spire.Xls
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public CellRange[] FindAllString(
string stringValue,
bool formula,
bool formulaValue
)
Public Function FindAllString (
stringValue As String,
formula As Boolean,
formulaValue As Boolean
) As CellRange()
public:
array<CellRange^>^ FindAllString(
String^ stringValue,
bool formula,
bool formulaValue
)
member FindAllString :
stringValue : string *
formula : bool *
formulaValue : bool -> CellRange[]
Parameters
-
stringValue
-
Type:
System
String
String value to search for.
-
formula
-
Type:
System
Boolean
Indicates if includes formula.
-
formulaValue
-
Type:
System
Boolean
Indicates if includes formula value.
Return Value
Type:
CellRange
Found ranges.
See Also