RangeExpression.MinType 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定範圍的最小值。
public:
property System::Web::UI::WebControls::Expressions::RangeType MinType { System::Web::UI::WebControls::Expressions::RangeType get(); void set(System::Web::UI::WebControls::Expressions::RangeType value); };
public System.Web.UI.WebControls.Expressions.RangeType MinType { get; set; }
member this.MinType : System.Web.UI.WebControls.Expressions.RangeType with get, set
Public Property MinType As RangeType
屬性值
要針對最小值使用的比較類型。 預設值為 None,表示不執行最小值比較。
範例
下列範例顯示如何包含範圍內指定的最小值,以及如何排除最大值。 最大值和最小值會輸入文字方塊中。 這個程式碼範例是 逐步解說:使用宣告式語法在網頁中篩選資料時,所提供之較大範例的一部分。
<asp:RangeExpression DataField="ListPrice"
MinType="Inclusive" MaxType="Exclusive">
<asp:ControlParameter ControlID="FromTextBox" />
<asp:ControlParameter ControlID="ToTextBox" />
</asp:RangeExpression>
備註
這個屬性的可能值為 Inclusive 、 Exclusive 和 None 。
當 MinType 或 MaxType 屬性設定為時 Inclusive ,範圍的最小值和最大值會包含在搜尋結果中。 這相當於執行 >= 或 <= operation. The Exclusive 欄位相當於 > 或 < 作業,而且 None 不會對範圍施加任何限制。