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

ComponentEditorContainer.GetToolTipController() Method

Returns the actual tooltip controller that controls the behavior and appearance of hints for a container component’s elements.

Namespace: DevExpress.XtraEditors.Container

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

public ToolTipController GetToolTipController()

Returns

Type Description
ToolTipController

A ToolTipController object providing tooltip functionality for the container component.

Remarks

This function’s return value depends on the ComponentEditorContainer.ToolTipController property value. If this property is set to null, tooltips for the container component are controlled by the default tooltip controller. This default controller is returned by the GetToolTipController method in this case. To obtain the default tooltip controller directly, you can use the static ToolTipController.DefaultController field.

If the ComponentEditorContainer.ToolTipController property is initialized with an instance of the ToolTipController class, this tooltip controller will provide tooltip functionality for the container component and this controller is returned by the GetToolTipController method.

See Also