1# WindowManager_Rect 2 3## Overview 4 5The struct describes the window rectangle, including the window position, width, and height. 6 7**Since**: 15 8 9**Related module**: [WindowManager](capi-windowmanager.md) 10 11**Header file**: [oh_window_comm.h](capi-oh-window-comm-h.md) 12 13## Summary 14 15### Member Variables 16 17| Name| Description| 18| -- | -- | 19| int32_t posX | X coordinate of the window, in px. The value is an integer.| 20| int32_t posY | Y coordinate of the window, in px. The value is an integer.| 21| uint32_t width | Window width, in px. The value is an integer.| 22| uint32_t height | Window height, in px. The value is an integer.| 23