Skip to main content
Tab

RibbonGalleryGroup.Text Property

Gets or sets the gallery group’s caption (the text content of the group’s header).

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
String "Group"

A string value that specifies the group’s caption text.

Remarks

Use the Text property to specify the gallery group caption text displayed in the group’s header.

Example

ASPxRibbon_GalleryItemAndGroup

<dx:RibbonGalleryBarItem ImageWidth="40" ImageHeight="19" ImagePosition="Left" ...>
     <Groups>
          ...
          <dx:RibbonGalleryGroup Text="Office 2010">
               <Items>
                    <dx:RibbonGalleryItem Text="Office 2010 Blue" ToolTip="Office 2010 Blue">
                         <Image Url="Images/Galleries/ThemeOffice2010Blue.png"></Image>
                    </dx:RibbonGalleryItem>
               ...
See Also