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

ToolTipController.CloseOnClick Property

Gets or sets whether a tooltip is closed on a click.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v18.2.dll

Declaration

[DefaultValue(DefaultBoolean.Default)]
[DXCategory("Behavior")]
public virtual DefaultBoolean CloseOnClick { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

A value that specifies whether a click on a tooltip closes this tooltip.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

If the CloseOnClick property is set to Default or True, tooltips are closed when they are clicked.

If the CloseOnClick property is set to True, tooltips are not auto-closed after a delay (ToolTipController.AutoPopDelay). Otherwise, the tooltips are auto-closed except for cases described in the ToolTipController.KeepWhileHovered topic.

See Also