2016-09-28 07:00:01 +00:00
|
|
|
# Display
|
|
|
|
|
2016-10-04 23:55:32 +00:00
|
|
|
* `id` Number - Unique identifier associated with the display.
|
|
|
|
* `rotation` Number - Can be 0, 90, 180, 270, represents screen rotation in
|
2016-09-28 07:00:01 +00:00
|
|
|
clock-wise degrees.
|
|
|
|
* `scaleFactor` Number - Output device's pixel scale factor.
|
|
|
|
* `touchSupport` String - Can be `available`, `unavailable`, `unknown`.
|
2016-10-04 23:55:32 +00:00
|
|
|
* `bounds` [Bounds](bounds.md)
|
2016-09-28 07:00:01 +00:00
|
|
|
* `size` Object
|
2016-10-04 23:55:32 +00:00
|
|
|
* `height` Number
|
|
|
|
* `width` Number
|
|
|
|
* `workArea` [Bounds](bounds.md)
|
2016-09-28 07:00:01 +00:00
|
|
|
* `workAreaSize` Object
|
2016-10-04 23:55:32 +00:00
|
|
|
* `height` Number
|
|
|
|
* `width` Number
|
2016-09-28 07:00:01 +00:00
|
|
|
|
|
|
|
The `Display` object represents a physical display connected to the system. A
|
|
|
|
fake `Display` may exist on a headless system, or a `Display` may correspond to
|
|
|
|
a remote, virtual display.
|