Class RenderDayCellEventArgs
Defines the argument for the RenderDayCell event.
Inheritance
System.Object
RenderDayCellEventArgs
Implements
System.IEquatable<RenderDayCellEventArgs>
Namespace: Syncfusion.Blazor.Calendars
Assembly: Syncfusion.Blazor.dll
Syntax
public class RenderDayCellEventArgs : Object, IEquatable<RenderDayCellEventArgs>
Constructors
RenderDayCellEventArgs()
Declaration
public RenderDayCellEventArgs()
Properties
CellData
Declaration
public CellDetails CellData { get; set; }
Property Value
Type | Description |
---|---|
CellDetails |
Date
Defines the current date of the Calendar.
Declaration
public DateTime Date { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Element
Specifies the day cell element.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
IsDisabled
Specifies whether to disable the current date or not.
Declaration
public bool IsDisabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsOutOfRange
Defines 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
Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(RenderDayCellEventArgs)
Declaration
public bool Equals(RenderDayCellEventArgs renderDayCellEventArgs)
Parameters
Type | Name | Description |
---|---|---|
RenderDayCellEventArgs | renderDayCellEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>