SchedulerHtmlCellDecorationEventArgs.Style Property
SECURITY-RELATED CONSIDERATIONS
The style-src: unsafe-inline CSP directive is not compatible with the Style event argument. Consider using the CssClass event argument as a safer alternative. Refer to the following help topic for additional information:
Specifies the name of an HTML style attribute applied to the cell.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
public string Style { get; set; }
Property Value
| Type | Description |
|---|---|
| String | The name of an HTML style attribute. |
Remarks
Handle the HtmlCellDecoration event to customize appearance of Scheduler cells. In the event handler, use the Style property to apply an HTML style attribute to the processed cell. Refer to the HtmlCellDecoration event description for more information and an example.
See Also