Class AppointmentDroppingEventArgs
Provides data for the AppointmentDropping event.
Inheritance
Namespace: Syncfusion.UI.Xaml.Scheduler
Assembly: Syncfusion.Scheduler.WinUI.dll
Syntax
public class AppointmentDroppingEventArgs : CancelEventArgs
Constructors
AppointmentDroppingEventArgs()
Declaration
public AppointmentDroppingEventArgs()
Properties
Appointment
Gets or sets the Appointment that is dragged and dropped.
Declaration
public ScheduleAppointment Appointment { get; set; }
Property Value
Type |
---|
ScheduleAppointment |
Remarks
When occurrence appointment of pattern appointment is dropping , it holds the occurrence appointment details. You can get the pattern appointment details from the occurrence appointment by using the GetPatternAppointment(SfScheduler, Object).
DropTime
Gets or sets the Dropped time of the dragged appointment object.
Declaration
public DateTime DropTime { get; set; }
Property Value
Type |
---|
System.DateTime |
SourceResource
Gets the original resource of the dropping appointment.
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 resource in which appointment is dropping.
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.