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

RepositoryItemColorPickEdit.TooltipFormat Property

Gets or sets the tooltip display format of a color’s value.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Appearance")]
[DefaultValue(ColorTooltipFormat.Argb)]
public virtual ColorTooltipFormat TooltipFormat { get; set; }

Property Value

Type Default Description
ColorTooltipFormat **Argb**

A ColorTooltipFormat value that is the tooltip display format of a color’s value.

Available values:

Name Description
Argb

A color’s value is presented in the ARGB format.

Hex

A color’s value is presented in hexadecimal format.

Remarks

When you hover over a color in the Custom and Web-Safe palettes in the ColorPickEdit control, a tooltip is displayed containing the color’s value. The color’s value is presented according to the TooltipFormat setting, in the ARGB format or as a hexadecimal value.

ColorPickEdit_Tooltip

You can customize tooltips by handling the ColorPickEditBase.TooltipShowing event.

See Also