Class RenderCellEventArgs
Provides the information about the rendering of all cells (work, time, resource, header, and more).
Inherited Members
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class RenderCellEventArgs
Constructors
RenderCellEventArgs()
Declaration
public RenderCellEventArgs()
Properties
CssClasses
Gets or sets the custom classes for the currently rendering element.
Declaration
public List<string> CssClasses { get; set; }
Property Value
| Type |
|---|
| List<string> |
Date
Gets the date value of the cell that is currently being rendered on the user interface (UI).
Declaration
public DateTime Date { get; }
Property Value
| Type | Description |
|---|---|
| DateTime | A DateTime value representing the date of the cell currently being rendered on the UI. |
ElementType
Gets the ElementType that is currently being rendered on the UI.
Declaration
public ElementType ElementType { get; }
Property Value
| Type | Description |
|---|---|
| ElementType | An instance of ElementType class representing the element that is currently being rendered on the UI. |
GroupIndex
Gets the group index of the cell which helps to get the resource information associated with the cell using GetResourceByIndex(int) method.
Declaration
public int? GroupIndex { get; }
Property Value
| Type | Description |
|---|---|
| int? | Accepts an integer value. |