DxEditorDropDownButtonBase.IconCssClass Property
Specifies the name of the CSS class applied to the button icon.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public string IconCssClass { get; set; }
Property Value
Type | Description |
---|---|
String | The CSS class name. |
Remarks
DevExpress Blazor components support pre-defined icon sets (such as Iconic or Bootstrap-recommended libraries) and custom icon libraries. Refer to the following topic for more information: Icons.
<DxDateEdit Date="DateTime.Today" ShowDropDownButton=false>
<Buttons>
<DxDateEditDropDownButton Position="EditorButtonPosition.Left"
Tooltip="Show calendar"
IconCssClass="oi oi-calendar"/>
</Buttons>
</DxDateEdit>
See Also