BrightIdeasSoftware.TextMatchFilter.TextContainsMatchingStrategy.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) {
                return cellText.IndexOf(this.Text, this.StringComparison) != -1;
            }