DxRibbonItemBase.Text Property
Specifies the ribbon item text label.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(null)]
[Parameter]
public string Text { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| String | null | The item label. |
Remarks
Use the Text property to add a text label to the Ribbon item. Remove the property to display an icon only (where applicable).
<DxRibbon>
<DxRibbonTab Text="Home">
<DxRibbonGroup Text="Style">
<DxRibbonItem Text="Bold"
IconCssClass="dx-icon-bold" />
<DxRibbonItem Text="Italic" />
</DxRibbonGroup>
</DxRibbonTab>
</DxRibbon>

See Also