TextSearchCriteria constructor

init

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

def __init__(self, search_string):
    ...
Parameter Type Description
search_string str The exact string to search for.

init

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

def __init__(self, search_string, is_match_case):
    ...
Parameter Type Description
search_string str The exact string to search for.
is_match_case bool to ignore case during the comparison; otherwise, .

See Also