Class RecurringAppointmentBeginningEditEventArgs
Provides data for RecurringAppointmentBeginningEdit event.
Inheritance
Namespace: Syncfusion.UI.Xaml.Scheduler
Assembly: Syncfusion.Scheduler.WinUI.dll
Syntax
public class RecurringAppointmentBeginningEditEventArgs : EventArgs
Constructors
RecurringAppointmentBeginningEditEventArgs()
Declaration
public RecurringAppointmentBeginningEditEventArgs()
Properties
EditMode
Gets or sets whether to edit/delete series or occurrence when the double-tapped or delete key is pressed on the recurrence appointment. You can let the end-user handle the recurrence appointment editing option (using the built-in dialog shown in the scheduler) or define it by yourself without showing a dialog.
Declaration
public RecurringAppointmentEditMode EditMode { get; set; }
Property Value
Type | Description |
---|---|
RecurringAppointmentEditMode | The default value is User which shows a dialog to user to choose whether to edit/delete series or occurrence. |
Remarks
You can set this property value as Series or Occurrence. So, dialog window will not be shown, and the appointment will get edit/delete based on the value set. If the RecurrenceEditMode value is User then AppointmentDeleting or AppointmentEditorOpening will be trigger only choosing OK option when delete/edit the recurrence appointment. If the RecurrenceEditMode value is Series or Occurrence then AppointmentDeleting or AppointmentEditorOpening will be triggered directly when delete/edit the recurrence appointment.