BrightIdeasSoftware.TextMatchFilter.TextRegexMatchingStrategy.MatchesText C# (CSharp) Метод

MatchesText() публичный Метод

Does the given text match the filter

this.Text will not be null or empty when this is called.

public MatchesText ( string cellText ) : bool
cellText string The text of the cell we want to search
Результат bool
            public override bool MatchesText(string cellText)
            {
                if (this.IsRegexInvalid)
                    return true;
                return this.Regex.Match(cellText).Success;
            }