ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / Calendar Class / RangeMax Property






In This Topic
    RangeMax Property (Calendar)
    In This Topic
    Gets or sets the maximum length allowed when editing date ranges.
    Syntax
    'Declaration
     
    
    <JsonAttribute(1)>
    <System.ComponentModel.DefaultValueAttribute(0)>
    Public Property RangeMax As System.Integer
    'Usage
     
    
    Dim instance As Calendar
    Dim value As System.Integer
     
    instance.RangeMax = value
     
    value = instance.RangeMax
    [Json(1)]
    [System.ComponentModel.DefaultValue(0)]
    public System.int RangeMax {get; set;}
    public read-write property RangeMax: System.Integer; 
    JsonAttribute(1)
    System.ComponentModel.DefaultValueAttribute(0)
    public function get,set RangeMax : System.int
    [Json(1)]
    [System.ComponentModel.DefaultValue(0)]
    public: __property System.int get_RangeMax();
    public: __property void set_RangeMax( 
       System.int value
    );
    [Json(1)]
    [System.ComponentModel.DefaultValue(0)]
    public:
    property System.int RangeMax {
       System.int get();
       void set (    System.int value);
    }
    Remarks
    The default value for this property is **0**, which means there is no maximum value for range lengths.
    See Also