Returns all entries of matchString string, taking into consideration caseSensitive and wholeWord options.

Namespace: Spire.Doc
Assembly: Spire.Doc (in Spire.Doc.dll) Version: 9.6.1.0 (9.6.1.3020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
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
String
caseSensitive
Boolean
wholeWord
Boolean

Return Value

array<TextSelection>[]()[][]

Implements

IDocument..::..FindAllString(String, Boolean, Boolean)

See Also