Table of Contents

Class SchedulerSlotSelectEventArgs

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Supplies information about a SlotSelect event that is being raised.

public class SchedulerSlotSelectEventArgs
Inheritance
SchedulerSlotSelectEventArgs
Inherited Members

Constructors

SchedulerSlotSelectEventArgs()

public SchedulerSlotSelectEventArgs()

Properties

Appointments

List of appointments.

public IEnumerable<AppointmentData> Appointments { get; set; }

Property Value

IEnumerable<AppointmentData>

End

The end of the slot.

public DateTime End { get; set; }

Property Value

DateTime

IsDefaultPrevented

Has default action been prevented from occuring?

public bool IsDefaultPrevented { get; }

Property Value

bool

Start

The start of the slot.

public DateTime Start { get; set; }

Property Value

DateTime

View

Current View.

public ISchedulerView View { get; set; }

Property Value

ISchedulerView

Methods

PreventDefault()

Prevent default action from occuring.

public void PreventDefault()