Back to Devexpress

RibbonGroup.Text Property

aspnet-devexpress-dot-web-dot-ribbongroup-1174c843.md

latest1.9 KB
Original Source

RibbonGroup.Text Property

Gets or sets the group‘s display text.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
[DefaultValue("")]
public string Text { get; set; }
vb
<DefaultValue("")>
Public Property Text As String

Property Value

TypeDefaultDescription
StringString.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.

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

Ribbon

GroupLabel

RibbonGroup Class

RibbonGroup Members

DevExpress.Web Namespace