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

ColorPickEditBase.TooltipShowing Event

Allows you to customize tooltips displayed when hovering over colors in the Custom and Web-Safe palettes.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Events")]
public event EventHandler<ColorPickEditTooltipShowingEventArgs> TooltipShowing

Event Data

The TooltipShowing event's data class is ColorPickEditTooltipShowingEventArgs. The following properties provide information specific to this event:

Property Description
Color Gets the color for which a tooltip will be displayed.
ContentText Gets or sets the content for the current tooltip.
Format Gets the display format of the current color’s value displayed in the tooltip.
TitleText Gets or sets the title for the current tooltip.

Remarks

The TooltipShowing event is equivalent to the RepositoryItemColorPickEdit.TooltipShowing event, accessible via the ColorPickEditBase.Properties object, i.e. adding/removing an event handler for the current event actually affects the RepositoryItemColorPickEdit.TooltipShowing event.

See Also