Class AppointmentEditorClosingEventArgs
Provides data for a AppointmentEditorClosing event.
Inheritance
Namespace: Syncfusion.UI.Xaml.Scheduler
Assembly: Syncfusion.Scheduler.WinUI.dll
Syntax
public class AppointmentEditorClosingEventArgs : CancelEventArgs
Constructors
AppointmentEditorClosingEventArgs()
Declaration
public AppointmentEditorClosingEventArgs()
Properties
Action
Gets the action (Add, Edit, Delete, Cancel) performed in appointment editor.
Declaration
public AppointmentEditorAction Action { get; }
Property Value
Type |
---|
AppointmentEditorAction |
Appointment
Gets the details of appointment edited.
Declaration
public ScheduleAppointment Appointment { get; }
Property Value
Type |
---|
ScheduleAppointment |
Remarks
When appointment editor closing on the occurrence appointment of pattern appointment when recurrence edit mode as occurrenceOccurrence , it holds the occurrence appointment details. You can get the pattern appointment details from the occurrence appointment by using the GetPatternAppointment(SfScheduler, Object).
Handled
Gets or sets a value indicating whether the scheduler can update the underlying appointments collection or appointment based on the action performed in appointment editor. If the value is true, scheduler does not perform the action and you have to write the code in the handler and performance the action.
Declaration
public bool Handled { get; set; }
Property Value
Type |
---|
System.Boolean |
Resources
Gets the resource collection of edited appointment.
Declaration
public List<SchedulerResource> Resources { get; }
Property Value
Type |
---|
System.Collections.Generic.List<SchedulerResource> |
Remarks
Data property holds the data object associated with scheduler when scheduler resource created from custom data object using ResourceMapping.