Class AppointmentDragOverEventArgs
Provides data for the AppointmentDragOver event.
Inheritance
Namespace: Syncfusion.UI.Xaml.Scheduler
Assembly: Syncfusion.Scheduler.WinUI.dll
Syntax
public class AppointmentDragOverEventArgs : EventArgs
Constructors
AppointmentDragOverEventArgs()
Declaration
public AppointmentDragOverEventArgs()
Properties
Appointment
Gets the Appointment that is dragging.
Declaration
public ScheduleAppointment Appointment { get; }
Property Value
Type |
---|
ScheduleAppointment |
Remarks
When occurrence appointment of pattern appointment is drag over , it holds the occurrence appointment details. You can get the pattern appointment details from the occurrence appointment by using the GetPatternAppointment(SfScheduler, Object).
DraggingPoint
Gets the dragging point of Schedule appointment UI.
Declaration
public Point DraggingPoint { get; }
Property Value
Type |
---|
Windows.Foundation.Point |
DraggingTime
Gets the Dragging time of the dragging appointment object.
Declaration
public DateTime DraggingTime { get; }
Property Value
Type |
---|
System.DateTime |
SourceResource
Gets the SchedulerResource where the appointment was located before starting the dragging.
Declaration
public SchedulerResource SourceResource { get; }
Property Value
Type |
---|
SchedulerResource |
Remarks
Data property holds the data object associated with scheduler when scheduler resource created from custom data object using ResourceMapping.
See Also
TargetResource
Gets the SchedulerResource where the appointment is currently being dragged over.
Declaration
public SchedulerResource TargetResource { get; }
Property Value
Type |
---|
SchedulerResource |
Remarks
Data property holds the data object associated with scheduler when scheduler resource created from custom data object using ResourceMapping.