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
End
The end of the slot.
public DateTime End { get; set; }
Property Value
IsDefaultPrevented
Has default action been prevented from occuring?
public bool IsDefaultPrevented { get; }
Property Value
Start
The start of the slot.
public DateTime Start { get; set; }
Property Value
View
Current View.
public ISchedulerView View { get; set; }
Property Value
Methods
PreventDefault()
Prevent default action from occuring.
public void PreventDefault()