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

AppMenuFileLabel.ImageToolTip Property

Gets or sets a regular tooltip for a check button, displayed when the button is in the unchecked state.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A string that specifies a regular tooltip for a check button.

Remarks

A regular tooltip or SuperToolTip can be displayed for a check button. The ImageToolTip property allows you to specify a regular tooltip, displayed when the button is in the unchecked state (the AppMenuFileLabel.SelectedImageToolTip property specifies a regular tooltip for the button in the checked state). The AppMenuFileLabel.ImageSuperTip property can be used to assign a SuperToolTip object to the button.

You can also display a title and an icon within regular tooltips. To do this, use the AppMenuFileLabel.ImageToolTipTitle and AppMenuFileLabel.ImageToolTipIconType properties. To specify a title and an icon for a regular tooltip displayed for a checked check button, use the AppMenuFileLabel.SelectedImageToolTipTitle and AppMenuFileLabel.SelectedImageToolTipIconType properties.

The RibbonControl.ToolTipController property determines the ToolTipController, which manages tooltips for the control. The type of tooltips displayed by the control is determined by the ToolTipController.ToolTipType property.

See Tooltip Management for more information.

See Also