Point¶
Description¶
Defines the location of a window or UI element. Contains a 2-element array.
Specifies the origin point of an element as horizontal and vertical pixel offsets from the origin of the element’s coordinate space. A Point object is created when you set an element?s location property. You can set the property using a JavaScript object with properties named x and y, or an array with 2 values in the order [x, y].
Properties¶
| left readonly | The left coordinate. |
| length readonly | The array length. |
| top readonly | The top coordinate. |
| x readonly | The horizontal coordinate, a pixel offset from the origin of the element’s coordinate space. |
| y readonly | The vertical coordinate, a pixel offset from the origin of the element’s coordinate space. |