TextSearchCriteria

TextSearchCriteria(Regex)

Initializes a new instance of the TextSearchCriteria class with a specified regular expression.

public TextSearchCriteria(Regex pattern)
Parameter Type Description
pattern Regex The regular expression to match.

See Also


TextSearchCriteria(string, bool)

Initializes a new instance of the TextSearchCriteria class with a search string and a flag for comparison.

public TextSearchCriteria(string searchString, bool isMatchCase)
Parameter Type Description
searchString String The exact string to search for.
isMatchCase Boolean false

See Also


TextSearchCriteria(string)

Initializes a new instance of the TextSearchCriteria class with a search string.

public TextSearchCriteria(string searchString)
Parameter Type Description
searchString String The exact string to search for.

See Also