Class AppointmentDragEventArgs
The Appointment Drag Event Arguments which contains the Dragging point, Dragging time and Dragging appointment details.
Inheritance
System.Object
AppointmentDragEventArgs
Namespace: Syncfusion.SfSchedule.XForms
Assembly: Syncfusion.SfSchedule.XForms.dll
Syntax
public class AppointmentDragEventArgs : EventArgs
Constructors
AppointmentDragEventArgs()
Initializes a new instance of the AppointmentDragEventArgs class.
Declaration
public AppointmentDragEventArgs()
Properties
Appointment
Gets the appointment object and it's properties to get the details of the dragging appointment in schedule.
Declaration
public object Appointment { get; }
Property Value
Type | Description |
---|---|
System.Object | The appointment. |
DraggingPoint
Gets the Dragging Point which returns the point of the dragging appointment in schedule as a type of Point.
Declaration
public Point DraggingPoint { get; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.Point | The dragging point. |
DraggingTime
Gets the dragging time of the dragging appointment which returns the date time value of the dragging appointment.
Declaration
public DateTime DraggingTime { get; }
Property Value
Type | Description |
---|---|
System.DateTime | The dragging time. |