Public Properties
Returns whether the find operation is case sensitive (read-only). Syntax
Returns the regex options to use for the search (read-only). Syntax
Returns the regex pattern to use for the search (read-only). Syntax
Returns the search direction (.i.e. whether the search should look forwards or backwards in the text) (read-only). Syntax
Returns the text to search for (read-only). Syntax
Returns whether to ignore partial matches within words (read-only). Syntax
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.
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..
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.