RangeExpression.MaxType Property

Definition

Gets or sets the maximum value of the range.

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

Property Value

The type of comparison to use for the maximum value. The default is None, which indicates that the maximum 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 MaxType is set to Inclusive, the maximum value of the range is included in the search results. This is equivalent to performing a >= operation. If you set the property to Exclusive field, it is equivalent to specifying a > or < operation. If you set the property to None, no limit is imposed on the range.

Applies to