Obtains display screen specific information
Usage:
sysScreenInfo (object me, integer infoType)
Parameters:
infoType (integer) - the screen information desired. The possible values are:
- Display adapter driver version
- Width, in millimeters, of the physical screen
- Height, in millimeters, of the physical screen
- Number of pixels per logical inch along the screen width ( horizontal DPI )
- Number of pixels per logical inch along the screen height ( vertical DPI )
- Screen color depth ( bits per pixel )
Returns:
(integer) - the screen information desired
Example:
xtRose = xtra("Rosetta").new( )
nXDPI = xtRose.sysScreenInfo( 4 )
Notes: