Class AppointmentDragOverEventArgs
Provides data for the AppointmentDragOver event, which occurs when an appointment is being dragged over the scheduler control.
Inheritance
Namespace: Syncfusion.Maui.Scheduler
Assembly: Syncfusion.Maui.Scheduler.dll
Syntax
public class AppointmentDragOverEventArgs : EventArgs
Constructors
AppointmentDragOverEventArgs()
Declaration
public AppointmentDragOverEventArgs()
Properties
Appointment
Gets the appointment that is being dragged.
Declaration
public SchedulerAppointment Appointment { get; }
Property Value
Type |
---|
SchedulerAppointment |
Remarks
If an occurrence of a pattern appointment is being dragged, this property holds the details of the occurrence appointment. You can get the details of the pattern appointment from the occurrence appointment by using the GetPatternAppointment(SfScheduler, Object) method.
DragPoint
Gets the dragging point of the scheduler appointment user interface.
Declaration
public Nullable<Point> DragPoint { get; }
Property Value
Type |
---|
System.Nullable<Microsoft.Maui.Graphics.Point> |
DragResource
Gets the original resource of the appointment that is being dragged.
Declaration
public SchedulerResource DragResource { get; }
Property Value
Type |
---|
SchedulerResource |
Remarks
The DataItem property holds the data object associated with the scheduler when the scheduler resource was created from a custom data object using the Mapping property.
See Also
DragTime
Gets the dragging time of the appointment object being dragged.
Declaration
public DateTime DragTime { get; }
Property Value
Type |
---|
System.DateTime |