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

RibbonGalleryItem.ToolTip Property

Gets or sets the current gallery item’s tooltip text.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A string specifying the text content of the current item’s tooltip.

Remarks

Use the ToolTip property to specify a tooltip text for an individual gallery item. If a string is assigned to an item’s ToolTip property, the tooltip is shown whenever the mouse cursor pauses over the item. If the ToolTip property is set to an empty string (String.Empty), the tooltip is never shown.

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