[]
Gets or sets the maximum limit of the date.
[Browsable(true)]
[TypeConverter(typeof(NullableDateTimeConverter))]
public DateTime? MaxDate { get; set; }
<Browsable(True)>
<TypeConverter(GetType(NullableDateTimeConverter))>
Public Property MaxDate As Date?
Type | Description |
---|---|
DateTime? | A DateTime value that indicates the maximum date of the calendar. |
This property retrieves a maximun date value and must be greater than the MinDate.
Type | Condition |
---|---|
ArgumentNullException | The value is null. |
ArgumentOutOfRangeException | The value is less than MinDate. |