Class
SchedulerEditEventArgs

The event arguments for the OnEdit event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class SchedulerEditEventArgs : EventArgs

Inheritance: objectEventArgsSchedulerEditEventArgs

Inherited Members EventArgs.Empty

Constructors

SchedulerEditEventArgs()

Declaration

cs-api-definition
public SchedulerEditEventArgs()

SchedulerEditEventArgs(object)

Declaration

cs-api-definition
public SchedulerEditEventArgs(object item)

Parameters

item

object

Properties

End

The end of the appointment or timeslot.

Declaration

cs-api-definition
public DateTime End { get; set; }

Property Value

DateTime

IsAllDay

Speficies whether the appointment or timeslot is AllDay.

Declaration

cs-api-definition
public bool IsAllDay { get; set; }

Property Value

bool

IsCancelled

Whether the event is cancelled and the built-in action prevented.

Declaration

cs-api-definition
public bool IsCancelled { get; set; }

Property Value

bool

IsNew

Indicates whether we are about to add a new appointment or edit an existing one.

Declaration

cs-api-definition
public bool IsNew { get; set; }

Property Value

bool

Item

The appointment the user attempts to edit.

Declaration

cs-api-definition
public object Item { get; set; }

Property Value

object

Start

The start of the appointment or timeslot.

Declaration

cs-api-definition
public DateTime Start { get; set; }

Property Value

DateTime