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






In This Topic
    RangeEnd Property (Calendar)
    In This Topic
    Gets or sets the last selected date in a range selection.
    Syntax
    'Declaration
     
    
    <JsonAttribute(1)>
    Public Property RangeEnd As System.Date
    'Usage
     
    
    Dim instance As Calendar
    Dim value As System.Date
     
    instance.RangeEnd = value
     
    value = instance.RangeEnd
    [Json(1)]
    public System.DateTime RangeEnd {get; set;}
    public read-write property RangeEnd: System.DateTime; 
    JsonAttribute(1)
    public function get,set RangeEnd : System.DateTime
    [Json(1)]
    public: __property System.DateTime get_RangeEnd();
    public: __property void set_RangeEnd( 
       System.DateTime value
    );
    [Json(1)]
    public:
    property System.DateTime RangeEnd {
       System.DateTime get();
       void set (    System.DateTime value);
    }
    Remarks
    To enable date range selection, set the SelectionMode property to **DateSelectionMode.Range**.
    See Also