Skip to main content

ToolTipController.ShowHint(String, String, Point) Method

Displays a hint with the specified text and title at the specified point using the current ToolTipController settings

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public void ShowHint(
    string toolTip,
    string title,
    Point cursorPosition
)

Parameters

Name Type Description
toolTip String

A string that represents a tooltip’s text.

title String

A string that represents a tooltip’s title.

cursorPosition Point

A point relative to which the hint should be displayed.

Remarks

The tooltip is displayed using the current ToolTipController settings.

This method raises the ToolTipController.BeforeShow and ToolTipController.CalcSize events before the hint is displayed.

The ShowHint method does not support flyout tooltips. Use the FlyoutPanel‘s methods instead.

See Also