Skip to main content

BaseGaugeWin.OptionsToolTip Property

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

Namespace: DevExpress.XtraGauges.Win.Base

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

NuGet Package: DevExpress.Win.Gauges

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 Hints and Tooltips topic, to learn about the differences between the Default ToolTipController and regular ToolTipController object.

See Also