Interface IDateTimePickerAdvCalendar
Interface used by DateTimePickerAdv. If the DateTimePickerAdv customDrop is true and the
CustomPopupWindow is the interface`s parent and Active is true then the interface will communicate with the picker through events.
Assembly: Syncfusion.Tools.Windows.dll
public interface IDateTimePickerAdvCalendar
Properties
Gets or sets a value indicating whether the interface`s events are to be considered by the DateTimePickerAdv.
Declaration
bool Active { get; set; }
Property Value
Gets or sets the font used to draw the calendar that implements the interface.
Declaration
Font CalendarFont { get; set; }
Property Value
Gets or sets the color used to draw the foreground of calendar that implements the interface.
Declaration
Color CalendarForeColor { get; set; }
Property Value
| Type |
| System.Drawing.Color |
Gets or sets the color used to draw the month background of calendar that implements the interface.
Declaration
Color CalendarMonthBackground { get; set; }
Property Value
| Type |
| System.Drawing.Color |
Gets or sets the culture of the calendar that implements the interface.
Declaration
CultureInfo Culture { get; set; }
Property Value
| Type |
| System.Globalization.CultureInfo |
Gets or sets the maximum date of the calendar that implements the interface.
Declaration
DateTime MaxDate { get; set; }
Property Value
Gets or sets the minimum date of the calendar that implements the interface.
Declaration
DateTime MinDate { get; set; }
Property Value
Gets or sets the color used to draw the title background of calendar that implements the interface.
Declaration
Color TitleBackColor { get; set; }
Property Value
| Type |
| System.Drawing.Color |
Gets or sets the color used to draw the foreground of the title of calendar that implements the interface.
Declaration
Color TitleForeColor { get; set; }
Property Value
| Type |
| System.Drawing.Color |
Gets or sets the color used to draw the trailing foreground of calendar that implements the interface.
Declaration
Color TrailingForeColor { get; set; }
Property Value
| Type |
| System.Drawing.Color |
Gets or sets the date of the calendar that implements the interface.
Declaration
DateTime Value { get; set; }
Property Value
Methods
Declaration
void add_DateChange(DateTimePickerAdv.DateChangedEventHandler value)
Parameters
Declaration
void add_NullButtonDown(DateTimePickerAdv.NullButtonEventHandler value)
Parameters
Declaration
void add_SelectDate(DateTimePickerAdv.SelectDateEventHandler value)
Parameters
Declaration
void remove_DateChange(DateTimePickerAdv.DateChangedEventHandler value)
Parameters
Declaration
void remove_NullButtonDown(DateTimePickerAdv.NullButtonEventHandler value)
Parameters
Declaration
void remove_SelectDate(DateTimePickerAdv.SelectDateEventHandler value)
Parameters
Events
Fired when the date is changed in the calendar that implements the interface.
Declaration
event DateTimePickerAdv.DateChangedEventHandler DateChange
Event Type
Fired when the null button of the calendar that implements the interface is clicked.
Declaration
event DateTimePickerAdv.NullButtonEventHandler NullButtonDown
Event Type
Fired when a date is selected in the calendar that implements the interface.
Declaration
event DateTimePickerAdv.SelectDateEventHandler SelectDate
Event Type