Screen
From Xojo Documentation
Class (inherits from Object)
Used to get information about the monitors connected to the user’s computer.
Properties | ||||||||||
|
Shared Methods | |
|
Shared Properties | ||
|
Notes
Although you cannot create an object of type Screen, you can access screen objects through the Screen class.
Sample Code
The following reports on the values of AvailableLeft, AvailableHeight, AvailableTop, and AvailableWidth for the main screen. The value of AvailableHeight takes into account the height of the taskbar (Windows and Linux) and the Dock (macOS). If the user has these tools configured to display on the side, the AvailableWidth property takes them into account.
Var s As String
s = "Left=" + Str(Screen.ScreenAt(0).AvailableLeft) + EndOfLine
s = s + "Width=" + Str(Screen.ScreenAt(0).AvailableWidth) + EndOfLine
s = s + "Top=" + Str(Screen.ScreenAt(0).AvailableTop) + EndOfLine
s = s + "Height=" + Str(Screen.ScreenAt(0).AvailableHeight) + EndOfLine
MessageBox(s)
s = "Left=" + Str(Screen.ScreenAt(0).AvailableLeft) + EndOfLine
s = s + "Width=" + Str(Screen.ScreenAt(0).AvailableWidth) + EndOfLine
s = s + "Top=" + Str(Screen.ScreenAt(0).AvailableTop) + EndOfLine
s = s + "Height=" + Str(Screen.ScreenAt(0).AvailableHeight) + EndOfLine
MessageBox(s)
See Also
Screen class, Screen.ScreenCount function.