Method | Description | |
---|---|---|
Contains ( string text, string value ) : bool |
Check if the prefix is contained in the string value. The current culture's case insensitive string comparison operator is used.
|
|
ContainsCaseSensitive ( string text, string value ) : bool |
Check if the prefix is contained in the string value.
|
|
ContainsOrdinal ( string text, string value ) : bool |
Check if the prefix is contained in the string value.
|
|
ContainsOrdinalCaseSensitive ( string text, string value ) : bool |
Check if the prefix is contained in the string value.
|
|
Equals ( string text, string value ) : bool |
Check if the string values are equal.
|
|
EqualsCaseSensitive ( string text, string value ) : bool |
Check if the string values are equal.
|
|
EqualsOrdinal ( string text, string value ) : bool |
Check if the string values are equal.
|
|
EqualsOrdinalCaseSensitive ( string text, string value ) : bool |
Check if the string values are equal.
|
|
GetFilter ( AutoCompleteFilterMode FilterMode ) : AutoCompleteFilterPredicate |
Index function that retrieves the filter for the provided AutoCompleteFilterMode.
|
|
StartsWith ( string text, string value ) : bool |
Check if the string value begins with the text.
|
|
StartsWithCaseSensitive ( string text, string value ) : bool |
Check if the string value begins with the text.
|
|
StartsWithOrdinal ( string text, string value ) : bool |
Check if the string value begins with the text.
|
|
StartsWithOrdinalCaseSensitive ( string text, string value ) : bool |
Check if the string value begins with the text.
|
public static Contains ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static ContainsCaseSensitive ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static ContainsOrdinal ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static ContainsOrdinalCaseSensitive ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static Equals ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static EqualsCaseSensitive ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static EqualsOrdinal ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static EqualsOrdinalCaseSensitive ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static GetFilter ( AutoCompleteFilterMode FilterMode ) : AutoCompleteFilterPredicate |
||
FilterMode | AutoCompleteFilterMode | The built-in search mode. |
return | AutoCompleteFilterPredicate |
public static StartsWith ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static StartsWithCaseSensitive ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static StartsWithOrdinal ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |
public static StartsWithOrdinalCaseSensitive ( string text, string value ) : bool | ||
text | string | The AutoCompleteBox prefix text. |
value | string | The item's string value. |
return | bool |