RangeExpression.MinType Property

Definition

Gets or sets the minimum value of the range.

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

Property Value

The type of comparison to use for the minimum value. The default is None, which indicates that the minimum comparison is not performed.

Examples

The following example shows how to include the minimum value that is specified in the range and how to exclude the maximum value. The maximum and minimum values are entered into text boxes. This code example is part of a larger example provided in Walkthrough: Filtering Data in a Web Page Using Declarative Syntax.

<asp:RangeExpression DataField="ListPrice"    
    MinType="Inclusive" MaxType="Exclusive">  
  <asp:ControlParameter ControlID="FromTextBox" />  
  <asp:ControlParameter ControlID="ToTextBox" />  
</asp:RangeExpression>  

Remarks

Possible values for this property are Inclusive, Exclusive, and None.

When the MinType or MaxType property is set to Inclusive, the minimum and maximum value of the range is included in the search results. This is equivalent to performing a >= or <= operation. The Exclusive field is equivalent to the > or < operation and None imposes no limit on the range.

Applies to