aspnet-devexpress-dot-web-dot-ribbongroup-1174c843.md
Gets or sets the group‘s display text.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("")]
public string Text { get; set; }
<DefaultValue("")>
Public Property Text As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
A string value that specifies the ribbon group’s display text.
|
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>
See Also