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






In This Topic
    RangeEnd Property (InputDateBase)
    In This Topic
    Gets or sets the last selected date in a range selection.
    Syntax
    'Declaration
     
    
    <JsonConverterAttribute(C1.Web.Mvc.Serialization.DateTimeConverter)>
    Public Property RangeEnd As System.Nullable(Of Date)
    'Usage
     
    
    Dim instance As InputDateBase
    Dim value As System.Nullable(Of Date)
     
    instance.RangeEnd = value
     
    value = instance.RangeEnd
    [JsonConverter(C1.Web.Mvc.Serialization.DateTimeConverter)]
    public System.Nullable<DateTime> RangeEnd {get; set;}
    public read-write property RangeEnd: System.Nullable; 
    JsonConverterAttribute(C1.Web.Mvc.Serialization.DateTimeConverter)
    public function get,set RangeEnd : System.Nullable
    [JsonConverter(C1.Web.Mvc.Serialization.DateTimeConverter)]
    public: __property System.Nullable<DateTime> get_RangeEnd();
    public: __property void set_RangeEnd( 
       System.Nullable<DateTime> value
    );
    [JsonConverter(C1.Web.Mvc.Serialization.DateTimeConverter)]
    public:
    property System.Nullable<DateTime> RangeEnd {
       System.Nullable<DateTime> get();
       void set (    System.Nullable<DateTime> value);
    }
    Remarks
    The selection range will be defined by the Value and RangeEnd properties.
    See Also