ToolTipLocation Enum
Specifies the location where a tooltip is displayed in relation to the mouse cursor position.
Namespace: DevExpress.Utils
Assembly: DevExpress.Utils.v24.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
Members
Name | Description |
---|---|
BottomLeft
|
A tooltip appears vertically aligned at the bottom, and horizontally aligned on the left relative to the mouse cursor position. |
BottomCenter
|
A tooltip appears vertically aligned at the bottom, and horizontally centered relative to the mouse cursor position. |
BottomRight
|
A tooltip appears vertically aligned at the bottom, and horizontally aligned on the right relative to the mouse cursor position. |
TopLeft
|
A tooltip appears vertically aligned at the top, and horizontally aligned on the left relative to the mouse cursor position. |
TopCenter
|
A tooltip appears vertically aligned at the top, and horizontally centered relative to the mouse cursor position. |
TopRight
|
A tooltip appears vertically aligned at the top, and horizontally aligned on the right relative to the mouse cursor position. |
LeftTop
|
A tooltip appears horizontally aligned on the left, and vertically aligned at the top relative to the mouse cursor position. |
LeftCenter
|
A tooltip appears horizontally aligned on the left, and vertically centered relative to the mouse cursor position. |
LeftBottom
|
A tooltip appears horizontally aligned on the left, and vertically aligned at the bottom relative to the mouse cursor position. |
RightTop
|
A tooltip appears horizontally aligned on the right, and vertically aligned at the top relative to the mouse cursor position. |
RightCenter
|
A tooltip appears horizontally aligned on the right, and vertically centered relative to the mouse cursor position. |
RightBottom
|
A tooltip appears horizontally aligned on the right, and vertically aligned at the bottom relative to the mouse cursor position. |
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
The following properties accept/return ToolTipLocation values:
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.