Size

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > System functions > System > System.Desktop >

Size

 

Description

 

Returns desktop dimension as a comma delimited string.

 

Syntax

 

desktopDescription = System.Desktop.Size

 

Returns

 

String, in format x,y,width,height

 

Remarks

 

Restrictions

 

Read only.

 

See also

 

Examples

 

uses "Console" 

 

printl System.Desktop.Size ' Will print "0,0,1920,1080" on PC with single display

 

waitkey