SearchExpression.SearchType 属性

定义

获取或设置 SearchType 值,该值确定在字符串中的何处进行搜索。

public:
 property System::Web::UI::WebControls::Expressions::SearchType SearchType { System::Web::UI::WebControls::Expressions::SearchType get(); void set(System::Web::UI::WebControls::Expressions::SearchType value); };
public System.Web.UI.WebControls.Expressions.SearchType SearchType { get; set; }
member this.SearchType : System.Web.UI.WebControls.Expressions.SearchType with get, set
Public Property SearchType As SearchType

属性值

SearchType

要执行的搜索的类型。

注解

SearchType属性使用 SearchType 枚举,其中包含要在类的实例中使用的搜索类型 SearchExpression

下表列出了可能的枚举值。

枚举 描述
StartsWith 指示在字段中的任意位置开始的搜索。
Contains 指示从字段开头开始搜索。
EndsWith 指示在字段末尾搜索。

适用于