BrightIdeasSoftware.TextMatchFilter.TextMatchingStrategy.FindAllMatchedRanges C# (CSharp) Method

FindAllMatchedRanges() public abstract method

Find all the ways in which this filter matches the given string.

This is used by the renderer to decide which bits of the string should be highlighted.

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

public abstract FindAllMatchedRanges ( string cellText ) : IEnumerable
cellText string The text of the cell we want to search
return IEnumerable
            public abstract IEnumerable<CharacterRange> FindAllMatchedRanges(string cellText);
TextMatchFilter.TextMatchingStrategy