Class CellClickEventArgs
Provides the information about the cell click action in the Scheduler.
Inherited Members
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellClickEventArgs
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 |
|---|---|
| bool |
|
EndTime
Gets the end time of the cell.
Declaration
[JsonPropertyName("endTime")]
public DateTime EndTime { get; set; }
Property Value
| Type | Description |
|---|---|
| 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(int) method.
Declaration
[JsonPropertyName("groupIndex")]
public int GroupIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| int | Accepts an integer value. |
Remarks
The GetResourceByIndex(int) method returns the resource information associated with the cell.
IsAllDay
Gets whether the clicked cell is all-day or not.
Declaration
[JsonPropertyName("isAllDay")]
public bool IsAllDay { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
MouseEventArgs
Gets the mouse event informations.
Declaration
public MouseEventArgs MouseEventArgs { get; set; }
Property Value
| Type | Description |
|---|---|
| MouseEventArgs | A MouseEventArgs object representing the mouse event information. |
StartTime
Gets the start time of the cell.
Declaration
[JsonPropertyName("startTime")]
public DateTime StartTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime | A DateTime object representing the start time of the cell. |