Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / DropDownCalendarInfo Class / MaxDate Property


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

    Property Value

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