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

BaseControl.ShowToolTips Property

Gets or sets whether a tooltip should be displayed when the mouse pointer is over the control.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("ToolTip")]
[DefaultValue(true)]
public virtual bool ShowToolTips { get; set; }

Property Value

Type Default Description
Boolean **true**

true to display tooltips; otherwise, false.

Remarks

The ShowToolTips property specifies whether tooltips for the current control are enabled. To specify a regular tooltip or a SuperToolTip for a control use the BaseControl.ToolTip and BaseControl.SuperTip properties respectively.

The BaseControl.ToolTipController property determines the ToolTipController which manages tooltips for the control. The type of tooltips displayed by controls is determined by the ToolTipController.ToolTipType property.

See Tooltip Management for more information.

See Also