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