Skip to main content
A newer version of this page is available. .
Tab

RibbonGroup.Text Property

Gets or sets the group‘s display text.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

[DefaultValue("")]
public string Text { get; set; }

Property Value

Type Default Description
String String.Empty

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.

ASPxRibbon_Text

<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