Skip to main content

ToolTipController.RemoveClientControl(Control) Method

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

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.

See Also