Document
FindAllString Method
|
Returns all entries of matchString string, taking into consideration caseSensitive
and wholeWord options.
Namespace:
Spire.Doc
Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
Syntax
public TextSelection[] FindAllString(
string matchString,
bool caseSensitive,
bool wholeWord
)
Public Function FindAllString (
matchString As String,
caseSensitive As Boolean,
wholeWord As Boolean
) As TextSelection()
public:
virtual array<TextSelection^>^ FindAllString(
String^ matchString,
bool caseSensitive,
bool wholeWord
) sealed
abstract FindAllString :
matchString : string *
caseSensitive : bool *
wholeWord : bool -> TextSelection[]
override FindAllString :
matchString : string *
caseSensitive : bool *
wholeWord : bool -> TextSelection[]
Parameters
-
matchString
-
Type:
System
String
-
caseSensitive
-
Type:
System
Boolean
-
wholeWord
-
Type:
System
Boolean
Return Value
Type:
TextSelection
Implements
IDocument
FindAllString(String, Boolean, Boolean)
See Also