Skip to main content

ToolTipLocation Enum

Specifies the location where a tooltip is displayed in relation to the mouse cursor position.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public enum ToolTipLocation

Members

Name Description
BottomLeft

A tooltip appears vertically aligned at the bottom, and horizontally aligned on the left relative to the mouse cursor position.

ToolTipPosition_BottomLeft.gif

BottomCenter

A tooltip appears vertically aligned at the bottom, and horizontally centered relative to the mouse cursor position.

ToolTipPosition_BottomCenter.gif

BottomRight

A tooltip appears vertically aligned at the bottom, and horizontally aligned on the right relative to the mouse cursor position.

ToolTipPosition_BottomRight.gif

TopLeft

A tooltip appears vertically aligned at the top, and horizontally aligned on the left relative to the mouse cursor position.

ToolTipPosition_TopLeft.gif

TopCenter

A tooltip appears vertically aligned at the top, and horizontally centered relative to the mouse cursor position.

ToolTipPosition_TopCenter.gif

TopRight

A tooltip appears vertically aligned at the top, and horizontally aligned on the right relative to the mouse cursor position.

ToolTipPosition_TopRight.gif

LeftTop

A tooltip appears horizontally aligned on the left, and vertically aligned at the top relative to the mouse cursor position.

ToolTipPosition_LeftTop.gif

LeftCenter

A tooltip appears horizontally aligned on the left, and vertically centered relative to the mouse cursor position.

ToolTipPosition_LeftCenter.gif

LeftBottom

A tooltip appears horizontally aligned on the left, and vertically aligned at the bottom relative to the mouse cursor position.

ToolTipPosition_LeftBottom.gif

RightTop

A tooltip appears horizontally aligned on the right, and vertically aligned at the top relative to the mouse cursor position.

ToolTipPosition_RightTop.gif

RightCenter

A tooltip appears horizontally aligned on the right, and vertically centered relative to the mouse cursor position.

ToolTipPosition_RightCenter.gif

RightBottom

A tooltip appears horizontally aligned on the right, and vertically aligned at the bottom relative to the mouse cursor position.

ToolTipPosition_RightBottom.gif

Default

The default tooltip location.

Fixed

A tooltip is shown in the location specified by the second parameter of the ShowHint(ToolTipControllerShowEventArgs, Point) overload.

Related API Members

Remarks

Use the members of this enumeration to set the value of the ToolTipController component’s ToolTipController.ToolTipLocation property.

Additionally, the values can be used to set the ToolTipControllerShowEventArgs.ToolTipLocation property when handling the ToolTipController.BeforeShow event.

See Also