|
|
|
|
|
SysScreenRectangle (Function) In french: SysRectangleEcran Returns the coordinates of the display rectangle corresponding to all the screens. Trace(SysScreenRectangle())
sRect is string = SysScreenRectangle()
ScreenLeft is int = ExtractString(sRect, 1)
ScreenTop is int = ExtractString(sRect, 2)
ScreenRight is int = ExtractString(sRect, 3)
ScreenBottom is int = ExtractString(sRect, 4)
Syntax
<Result> = SysScreenRectangle()
<Result>: Character string Dimensions of the screen. These dimensions have the following format: <X> + TAB + <Y> + TAB + <Maximum X> + TAB + <Maximum Y> - The (X, Y) coordinates correspond to the upper-left corner of the screen.
- Maximum X: Screen width or sum of screen widths
- Maximum X: Screen height or sum of screen heights
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|