SysInfo: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
Line 19: Line 19:
| 10 || Milliseconds since 01/01/70 ||
| 10 || Milliseconds since 01/01/70 ||
|-
|-
| 108 || HiRes Display width pixels || HorzRez
| 108 || screen.availWidth ||
|-
|-
| 109 || HiRes Display height pixels || VertRez
| 109 || screen.availHeight ||
|-
|-
| 188 || Pixels per inch horizontal || LogPixelsX
| 188 || Screen.width ||
|-
|-
| 190 || Pixels per inch vertical || LogPixelsY
| 190 || Screen.height ||
|}
|}



Revision as of 09:41, 26 March 2013

SysInfo(number)

Description

SysInfo returns information about the device.

0 Width of screen - actual screen size in Portrait mode SM_CXScreen
1 Height of screen - actual screen size in Portrait mode SM_CYScreen
2 Width of screen in current orientation
3 Height of screen in current orientation
4 Running on a mobile device? True/False
10 Milliseconds since 01/01/70
108 screen.availWidth
109 screen.availHeight
188 Screen.width
190 Screen.height

Example

Rem SysInfo Example
MsgBox "The device’s DPI is " & sysInfo(188)

Output

The device’s DPI is 96.