संपादित करें

इसके माध्यम से साझा किया गया


SearchType Enum

Definition

Specifies the type of search in an instance of the SearchExpression class.

public enum class SearchType
public enum SearchType
type SearchType = 
Public Enum SearchType
Inheritance
SearchType

Fields

Contains 0

Indicates that a search should determine whether the search string matches a string anywhere in a field.

EndsWith 2

Indicates that a search should determine whether the search string matches a string at the end of a field.

StartsWith 1

Indicates that a search should determine whether the search string matches a string at the beginning of a field.

Examples

The following example shows how to use markup to set the SearchExpression filter option to StartsWith:

<asp:SearchExpression SearchType="StartsWith" DataFields="Name" >  

Remarks

The SearchExpression filter option uses the SearchType enumeration when it performs a string comparison. You set the SearchExpression.SearchType property to one of the SearchType enumeration values.

Applies to