Skip to main content

ToolTipController.ShowHint(String, ToolTipLocation) Method

Displays a hint at the specified position relative to the mouse cursor.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public void ShowHint(
    string toolTip,
    ToolTipLocation toolTipLocation
)

Parameters

Name Type Description
toolTip String

The text to display as a tooltip.

toolTipLocation ToolTipLocation

The position relative to the mouse cursor at which the hint should be displayed.

Remarks

The 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