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

EditorContainer.GetToolTipController() Method

Returns the actual tooltip controller that controls the behavior and appearance of hints for the container editor.

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 editor.

Remarks

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

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

See Also