Class DateRenderEventArgs
Supplies information about a DateRender event that is being raised.
Inheritance
System.Object
DateRenderEventArgs
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class DateRenderEventArgs : object
Properties
Attributes
Gets or sets the HTML attributes that will be applied to item HTML element.
Declaration
public IDictionary<string, object> Attributes { get; }
Property Value
Type | Description |
---|---|
IDictionary<System.String, System.Object> | The attributes. |
Examples
void OnDateRender(DateRenderEventArgs args) { args.Attributes["style"] = "background-color: red; color: black;"; }
Date
Gets the date which the rendered item represents.
Declaration
public DateTime Date { get; }
Property Value
Type | Description |
---|---|
DateTime |
Disabled
Gets or sets a value indicating whether the rendered item is disabled.
Declaration
public bool Disabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|