Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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