Skip to main content
All docs
V24.2

DxRibbonGroup.Text Property

Specifies the group text.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string Text { get; set; }

Property Value

Type Description
String

The group text.

Remarks

When the ribbon width decreases, the component collapses groups and display them as drop-down buttons. Use Text and IconCssClass properties to define text and icon for the button.

<DxRibbon >
    <DxRibbonApplicationTab Text="File" />
        <DxRibbonTab Text="Home">
            <DxRibbonGroup Text="Clipboard" IconCssClass="rb-icon rb-icon-undo">...</DxRibbonGroup>
            <DxRibbonGroup Text="Font Settings">...</DxRibbonGroup>
            <DxRibbonGroup IconCssClass="rb-icon rb-icon-bold">...</DxRibbonGroup>
        </DxRibbonTab>
    ...
</DxRibbon>

Ribbon Group Settings

See Also