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

ContextItem.SuperTip Property

Gets or sets a SuperToolTip for the current context item.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v19.2.dll

Declaration

[DXCategory("ToolTip")]
public virtual SuperToolTip SuperTip { get; set; }

Property Value

Type Description
SuperToolTip

A SuperToolTip object associated with the current context item.

Remarks

Context items can display hints to end-users when hovered over with the mouse pointer (see ContextItem.ShowToolTips). Two types of hints are supported:

  • Regular tooltips—simple tooltips that consist of title and content regions. A regular tooltip for the current item is specified by the ContextItem.ToolTip property.
  • Super tooltips—SuperToolTip objects that support multiple text and image regions. The SuperTip property allows you to assign a SuperToolTip object to the current context item.

The type of tooltips displayed for context items is determined by a ToolTipController object (by default, by the DefaultToolTipController). The ToolTipController property of the control that owns the current context item determines the ToolTipController which manages tooltips for context items. See Tooltips for more information.

For the RatingContextButton objects, the ContextItem descendants, you can provide a custom regular tooltip for each rating point when handling the ContextItem.CustomToolTip event.

See Also