# WindowManager_Rect ## Overview The WindowManager_Rect struct describes the window rectangle, including the window position, width, and height. **Since**: 15 **Related module**: [WindowManager_NativeModule](_window_manager___native_module.md) ## Summary ### Member Variables | Name| Description| | -------- | -------- | | int32_t [posX](#posx) | X coordinate of the window, in px. The value is an integer.| | int32_t [posY](#posy) | Y coordinate of the window, in px. The value is an integer.| | uint32_t [width](#width) | Window width, in px. The value is an integer.| | uint32_t [height](#height) | Window height, in px. The value is an integer.| ## Member Variable Description ### height ``` uint32_t WindowManager_Rect::height ``` **Description** Window height, in px. The value is an integer. ### posX ``` int32_t WindowManager_Rect::posX ``` **Description** X coordinate of the window, in px. The value is an integer. ### posY ``` int32_t WindowManager_Rect::posY ``` **Description** Y coordinate of the window, in px. The value is an integer. ### width ``` uint32_t WindowManager_Rect::width ``` **Description** Window width, in px. The value is an integer.