C# Класс BrightIdeasSoftware.TextMatchFilter.TextBeginsMatchingStrategy

This component provides text begins with matching strategy.
Наследование: TextMatchingStrategy
Показать файл Открыть проект

Открытые методы

Метод Описание
FindAllMatchedRanges ( string cellText ) : IEnumerable

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.

MatchesText ( string cellText ) : bool

Does the given text match the filter

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

TextBeginsMatchingStrategy ( TextMatchFilter filter, string text ) : System

Create a text begins strategy

Описание методов

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

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 FindAllMatchedRanges ( string cellText ) : IEnumerable
cellText string The text of the cell we want to search
Результат IEnumerable

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

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

Create a text begins strategy
public TextBeginsMatchingStrategy ( TextMatchFilter filter, string text ) : System
filter TextMatchFilter
text string
Результат System