Class SchedulerItemEventArgs
Inheritance
System.Object
SchedulerItemEventArgs
Namespace: Telerik.Blazor.Components.Scheduler
Assembly: Telerik.Blazor.dll
Syntax
public abstract class SchedulerItemEventArgs : Object, IRenderEventArgs
Properties
EventArgs
Defines the arguments of the event. You can cast it to the specific argument type and check if the click comes from mouse, keyboard or other.
Declaration
public EventArgs EventArgs { get; set; }
Property Value
System.EventArgs
|
Item
The underlying item that the element is bound to.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
ShouldRender
Defines whether the component should re-render.
Declaration
public bool ShouldRender { get; set; }
Property Value
System.Boolean
|