Class EventClickArgs<T>
Provides the information about the event click actions.
Inheritance
System.Object
EventClickArgs<T>
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class EventClickArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | Specifies the TValue of schedule events. |
Constructors
EventClickArgs()
Declaration
public EventClickArgs()
Properties
Cancel
Gets or sets whether the event click action of scheduler should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Event
Gets the selected or clicked event.
Declaration
public T Event { get; set; }
Property Value
Type |
---|
T |
EventCollection
Gets a collection of selected or clicked events.
Declaration
public List<T> EventCollection { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
GroupIndex
Gets the group index of the event which helps to get the resource information associated with the cell using GetResourceByIndex(Int32) method.
Declaration
public int GroupIndex { get; }
Property Value
Type |
---|
System.Int32 |
Remarks
The GetResourceByIndex(Int32) method returns the resource information associated with the cell.
MouseEventArgs
Gets the mouse event informations.
Declaration
public MouseEventArgs MouseEventArgs { get; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs | A MouseEventArgs object representing the mouse event information. |