Class SchedulerEditEventArgs
The event arguments for the OnEdit event.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class SchedulerEditEventArgs : EventArgs
Constructors
SchedulerEditEventArgs()
Declaration
public SchedulerEditEventArgs()
SchedulerEditEventArgs(Object)
Declaration
public SchedulerEditEventArgs(object item)
Parameters
System.Object
item
|
Properties
End
The end of the appointment or timeslot.
Declaration
public DateTime End { get; set; }
Property Value
System.DateTime
|
IsAllDay
Speficies whether the appointment or timeslot is AllDay.
Declaration
public bool IsAllDay { get; set; }
Property Value
System.Boolean
|
IsCancelled
Whether the event is cancelled and the built-in action prevented.
Declaration
public bool IsCancelled { get; set; }
Property Value
System.Boolean
|
IsNew
Indicates whether we are about to add a new appointment or edit an existing one.
Declaration
public bool IsNew { get; set; }
Property Value
System.Boolean
|
Item
The appointment the user attempts to edit.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
Start
The start of the appointment or timeslot.
Declaration
public DateTime Start { get; set; }
Property Value
System.DateTime
|