Skip to main content
A newer version of this page is available. .

TdxAlertWindowManager.WindowPosition Property

Specifies the starting pop-up position of newly created alert windows.

Declaration

property WindowPosition: TdxAlertWindowPosition read; write; default awpAuto;

Property Value

Type Default
TdxAlertWindowPosition awpAuto

Remarks

This property defines the pop-up position of the first alert window. Once it is shown, an alert window manager will automatically arrange all the subsequent alert windows along the closest vertical screen edge in one column. Once the first alert window is closed, hidden, or moved from its initial position, other alert windows may pop up at this position as well. Note however, you can always specify the exact position of an alert window via its Left and Top properties.

Available WindowPosition property values include:

Value Description
awpAuto Alert windows pop up next to the system notification area.
awpTopLeft Alert windows pop up at the top-left corner of the screen.
awpTopRight Alert windows pop up at the top-right corner of the screen.
awpBottomLeft Alert windows pop up at the bottom-left corner of the screen.
awpBottomRight Alert windows pop up at the bottom-right corner of the screen.

The default value of the WindowPosition property is awpAuto.

See Also