New to Telerik UI for BlazorStart a free 30-day trial

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 EventArgs.Empty

Constructors

C#
public SchedulerEditEventArgs()
C#
public SchedulerEditEventArgs(object item)
Parameters:itemobject

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.

The end of the appointment or timeslot.

C#
public DateTime End { get; set; }

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; }

The appointment the user attempts to edit.

C#
public object Item { get; set; }

The start of the appointment or timeslot.

C#
public DateTime Start { get; set; }