The event arguments for the OnEdit event.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class SchedulerEditEventArgs : EventArgs
Inheritance: objectEventArgsSchedulerEditEventArgs
Inherited Members
Constructors
C#
public SchedulerEditEventArgs()
Properties
Expresses whether the user wants to edit a single occurrence or the entire series of a recurring appointment.
C#
public SchedulerRecurrenceEditMode EditMode { get; set; }
Remarks:
Occurrence - the user wants to edit a single occurrence of a recurring appointment. Series - the user wants to edit the entire series of a recurring appointment.
Speficies whether the appointment or timeslot is AllDay.
C#
public bool IsAllDay { get; set; }
Whether the event is cancelled and the built-in action prevented.
C#
public bool IsCancelled { get; set; }
Indicates whether we are about to add a new appointment or edit an existing one.
C#
public bool IsNew { get; set; }