Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcDropDownCalendar Class / MinDate Property


In This Topic
    MinDate Property (GcDropDownCalendar)
    In This Topic
    Gets or sets the minimum date that can be shown in the control. This is a dependency property.
    Syntax
    'Declaration
     
    Public Property MinDate As Date
    'Usage
     
    Dim instance As GcDropDownCalendar
    Dim value As Date
     
    instance.MinDate = value
     
    value = instance.MinDate
    public DateTime MinDate {get; set;}

    Property Value

    A System.DateTime value indicates the minimum date that can be shown in the control. The default is 0001/01/01.
    Remarks
    Set MinDate greater than MaxDate, MaxDate will change to same as MinDate; Set MaxDate less than MinDate, the MinDate won't change and the MaxDate changes to same as MinDate.
    See Also