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 不会对范围施加任何限制。