Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / DropDownCalendar Class / MinDate Property


In This Topic
    MinDate Property (DropDownCalendar)
    In This Topic
    Gets or sets the minimum limit of the date.
    Syntax
    'Declaration
     
    
    Public Property MinDate As Nullable(Of Date)
    'Usage
     
    
    Dim instance As DropDownCalendar
    Dim value As Nullable(Of Date)
     
    instance.MinDate = value
     
    value = instance.MinDate
    public Nullable<DateTime> MinDate {get; set;}

    Property Value

    A System.DateTime value that indicates the minimum date of the calendar.
    Exceptions
    ExceptionDescription
    The value is a null reference (Nothing in Visual Basic).
    The value is greater than MaxDate.
    Remarks
    This property retrieves a minimum date value and must be less than the MaxDate.
    See Also