Class RenderDayCellEventArgs
Provides information about an OnRenderDayCell event being raised.
Inheritance
System.Object
RenderDayCellEventArgs
Namespace: Syncfusion.Blazor.Calendars
Assembly: Syncfusion.Blazor.dll
Syntax
public class RenderDayCellEventArgs : Object
Constructors
RenderDayCellEventArgs()
Declaration
public RenderDayCellEventArgs()
Properties
CellData
Gets or sets the Calendar cell element details.
Declaration
public CellDetails CellData { get; set; }
Property Value
Type | Description |
---|---|
CellDetails |
Date
Gets the current date of the Calendar.
Declaration
public DateTime Date { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime | Current date in the calendar view. |
Element
Gets the day cell element.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM | The DOM element representing the day cell element in Calendar component. |
IsDisabled
Sets whether to disable the current date or not.
Declaration
public bool IsDisabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsOutOfRange
Gets or sets whether the current date is out of range (less than min or greater than max) or not.
Declaration
public bool IsOutOfRange { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Name
Gets or sets the Name Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |