Class ScheduleAppointmentClickEventArgs
Provides data for the ScheduleAppointmentClick event.
Inheritance
Namespace: Syncfusion.Windows.Forms.Schedule
Assembly: Syncfusion.Schedule.Windows.dll
Syntax
public class ScheduleAppointmentClickEventArgs : CancelEventArgs
Constructors
ScheduleAppointmentClickEventArgs()
Initializes a new instance of the ScheduleAppointmentClickEventArgs class.
Declaration
public ScheduleAppointmentClickEventArgs()
ScheduleAppointmentClickEventArgs(ScheduleAppointmentClickType, IScheduleAppointment, ScheduleViewType, DateTime)
Initializes a new instance of the ScheduleAppointmentClickEventArgs class.
Declaration
public ScheduleAppointmentClickEventArgs(ScheduleAppointmentClickType clickType, IScheduleAppointment item, ScheduleViewType type, DateTime clickDateTime)
Parameters
Type | Name | Description |
---|---|---|
ScheduleAppointmentClickType | clickType | The ScheduleAppointmentClickType that describes the click. |
IScheduleAppointment | item | The IScheduleAppointment that was clicked. May be null. |
ScheduleViewType | type | The active ScheduleViewType. |
System.DateTime | clickDateTime | The calendar time slot of the click. |
Properties
ClickDateTime
Gets or sets the time slot that was clicked.
Declaration
public DateTime ClickDateTime { get; set; }
Property Value
Type |
---|
System.DateTime |
ClickType
Gets or sets the type of item click.
Declaration
public ScheduleAppointmentClickType ClickType { get; set; }
Property Value
Type |
---|
ScheduleAppointmentClickType |
Item
Gets or sets the Schedule item under the click point.
Declaration
public IScheduleAppointment Item { get; set; }
Property Value
Type |
---|
IScheduleAppointment |
Type
Gets or sets the Calendar Type.
Declaration
public ScheduleViewType Type { get; set; }
Property Value
Type |
---|
ScheduleViewType |