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

ToolTipController.RemoveClientControl(Control) Method

Disables displaying tooltips for the specified control implementing the DevExpress.Utils.IToolTipControlClient interface.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v19.2.dll

Declaration

public virtual void RemoveClientControl(
    Control control
)

Parameters

Name Type Description
control Control

The control, implementing the DevExpress.Utils.IToolTipControlClient interface, for which the ToolTipController‘s functionality should be disabled.

Remarks

The method supports the internal infrastructure and usually you do not need to call it from your code.

RemoveClientControl unsubscribes the current tooltip controller from mouse events of the specified control. The method is called automatically by controls implementing the DevExpress.Utils.IToolTipControlClient interface to disable the tooltip controller’s functionality for these controls. See the ToolTipController topic for information on the DevExpress.Utils.IToolTipControlClient interface.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the RemoveClientControl(Control) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also