Class SchedulerSlotSelectEventArgs
Supplies information about a SlotSelect event that is being raised.
Inheritance
System.Object
SchedulerSlotSelectEventArgs
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class SchedulerSlotSelectEventArgs : object
Properties
Appointments
List of appointments.
Declaration
public IEnumerable<AppointmentData> Appointments { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<AppointmentData> |
End
The end of the slot.
Declaration
public DateTime End { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
IsDefaultPrevented
Has default action been prevented from occuring?
Declaration
public bool IsDefaultPrevented { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Start
The start of the slot.
Declaration
public DateTime Start { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
View
Current View.
Declaration
public ISchedulerView View { get; set; }
Property Value
Type | Description |
---|---|
ISchedulerView |
Methods
PreventDefault()
Prevent default action from occuring.
Declaration
public void PreventDefault()