Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxRibbonGroup.Text Property

Specifies the group text.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[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.

razor
<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