RibbonGroup.Text Property
Gets or sets the group‘s display text.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
String | String. |
A string value that specifies the ribbon group’s display text. |
#Remarks
The text specified via the Text property is displayed in the group, below the items. You can use the ASPxRibbon.ShowGroupLabels property to hide the text of all groups in the control.
<dx:RibbonTab Name="Insert" Text="Insert">
<Groups>
<dx:RibbonGroup Text="Tables">
...
</dx:RibbonGroup>
<dx:RibbonGroup Text="Illustrations">
...
</dx:RibbonGroup>
<dx:RibbonGroup Text="Charts">
...
</dx:RibbonGroup>
</Groups>
</dx:RibbonTab>