• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# WindowManager_Rect
2
3
4## Overview
5
6The WindowManager_Rect struct describes the window rectangle, including the window position, width, and height.
7
8**Since**: 15
9
10**Related module**: [WindowManager_NativeModule](_window_manager___native_module.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name| Description|
19| -------- | -------- |
20| int32_t [posX](#posx) | X coordinate of the window, in px. The value is an integer.|
21| int32_t [posY](#posy) | Y coordinate of the window, in px. The value is an integer.|
22| uint32_t [width](#width) | Window width, in px. The value is an integer.|
23| uint32_t [height](#height) | Window height, in px. The value is an integer.|
24
25
26## Member Variable Description
27
28
29### height
30
31```
32uint32_t WindowManager_Rect::height
33```
34
35**Description**
36
37Window height, in px. The value is an integer.
38
39
40### posX
41
42```
43int32_t WindowManager_Rect::posX
44```
45
46**Description**
47
48X coordinate of the window, in px. The value is an integer.
49
50
51### posY
52
53```
54int32_t WindowManager_Rect::posY
55```
56
57**Description**
58
59Y coordinate of the window, in px. The value is an integer.
60
61
62### width
63
64```
65uint32_t WindowManager_Rect::width
66```
67
68**Description**
69
70Window width, in px. The value is an integer.
71