blazor-devexpress-dot-blazor-dot-dxribbongroup-997e12e1.md
Specifies the group text.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(null)]
[Parameter]
public string Text { get; set; }
| Type | Default | Description |
|---|---|---|
| String | null |
The group text.
|
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>
See Also