C# 클래스 BrightIdeasSoftware.TextMatchFilter.TextBeginsMatchingStrategy

This component provides text begins with matching strategy.
상속: TextMatchingStrategy
파일 보기 프로젝트 열기: tvoyle/ObjectListViewRepack

공개 메소드들

메소드 설명
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