Class CellClickEventArgs
Provides the information about the cell click action in the Scheduler.
Inheritance
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellClickEventArgs : Object
Constructors
CellClickEventArgs()
Declaration
public CellClickEventArgs()
Properties
Cancel
Gets or sets whether the cell click action of Scheduler should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EndTime
Gets the end time of the cell.
Declaration
public DateTime EndTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime | A DateTime object representing the end time of the cell. |
GroupIndex
Gets the group index of the cell which helps to get the resource information associated with the cell using GetResourceByIndex(Int32) method.
Declaration
public int GroupIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
Remarks
The GetResourceByIndex(Int32) method returns the resource information associated with the cell.
IsAllDay
Gets whether the clicked cell is all-day or not.
Declaration
public bool IsAllDay { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
MouseEventArgs
Gets the mouse event informations.
Declaration
public MouseEventArgs MouseEventArgs { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs | A MouseEventArgs object representing the mouse event information. |
StartTime
Gets the start time of the cell.
Declaration
public DateTime StartTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime | A DateTime object representing the start time of the cell. |