Version

Search Results

IsCaseSensitive Property

Returns whether the find operation is case sensitive (read-only). Syntax

RegexOptions Property

Returns the regex options to use for the search (read-only). Syntax

RegexPattern Property

Returns the regex pattern to use for the search (read-only). Syntax

SearchBackwards Property

Returns the search direction (.i.e. whether the search should look forwards or backwards in the text) (read-only). Syntax

TextToFind Property

Returns the text to search for (read-only). Syntax

WholeWordOnly Property

Returns whether to ignore partial matches within words (read-only). Syntax

TextSearchCriteria Constructor(Boolean,String,Boolean,Boolean)

Initializes a new TextSearchCriteria Syntax Parameters wholeWordOnly If true bypass partial word matches.regexPattern The regular expression pattern to use.isCaseSensitive If true will match only if the case matches.searchBackwards If true will serach up in the document.

TextSearchCriteria Constructor(Boolean,String,RegexOptions)

Initializes a new TextSearchCriteria Syntax Parameters wholeWordOnly If true bypass partial word matches.regexPattern The regular expression pattern to use.regexOptions the regular expression options to use..

TextSearchCriteria Constructor(String,Boolean,Boolean,Boolean)

Initializes a new TextSearchCriteria Syntax Parameters textToFind The text to search for.wholeWordOnly If true bypass partial word matches.isCaseSensitive If true will match only if the case matches.searchBackwards If true will serach up in the document.