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

BaseGaugeWin.OptionsToolTip Property

Provides options that control the tooltip display for the gauge’s elements.

Namespace: DevExpress.XtraGauges.Win.Base

Assembly: DevExpress.XtraGauges.v19.2.Win.dll

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Content)]
public virtual OptionsToolTip OptionsToolTip { get; set; }

Property Value

Type Description
OptionsToolTip

A OptionsToolTip object that contains corresponding options.

Remarks

Use the GaugeControl.ShowToolTips property to enable tooltips.

To customize tooltips or prevent them from being displayed in specific instances, use events provided by the DefaultToolTipController or ToolTipController. For example, the ToolTipController.BeforeShow event allows you to customize the text and settings of tooltips before displaying them on screen. See the Tooltips topic, to learn about the differences between the Default ToolTipController and regular ToolTipController object.

See Also