2016-10-08 02:09:31 +00:00
# Display Object
2016-09-28 07:00:01 +00:00
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` .
2019-02-12 15:34:42 +00:00
* `monochrome` Boolean - Whether or not the display is a monochrome display.
* `accelerometerSupport` String - Can be `available` , `unavailable` , `unknown` .
2019-03-19 22:12:03 +00:00
* `colorSpace` String - represent a color space (three-dimensional object which contains all realizable color combinations) for the purpose of color conversions
2019-02-12 15:34:42 +00:00
* `colorDepth` Number - The number of bits per pixel.
* `depthPerComponent` Number - The number of bits per color component.
2016-10-08 02:09:31 +00:00
* `bounds` [Rectangle ](rectangle.md )
2017-04-03 22:35:39 +00:00
* `size` [Size ](size.md )
2016-10-08 02:09:31 +00:00
* `workArea` [Rectangle ](rectangle.md )
2017-04-03 22:35:39 +00:00
* `workAreaSize` [Size ](size.md )
2019-02-12 15:34:42 +00:00
* `internal` Boolean - `true` for an internal display and `false` for an external display
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.