Class RenderCellEventArgs
Provides the information about the rendering of all cells (work, time, resource, header, and more).
Inheritance
System.Object
RenderCellEventArgs
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class RenderCellEventArgs : Object
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 |
---|
System.Collections.Generic.List<System.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 |
---|---|
System.DateTime | A System.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(Int32) method.
Declaration
public Nullable<int> GroupIndex { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | Accepts an integer value. |