Automation.UI.Tree.QueryParts.QueryMatcherPart.Matches C# (CSharp) Method

Matches() public method

Adds a regex condition.
public Matches ( string pattern ) : QueryOperatorPart
pattern string The regeular expression to match.
return QueryOperatorPart
        public QueryOperatorPart Matches(string pattern)
        {
            return ApplyMatcher(pattern, Util.Matchers.Regex);
        }