• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Rect
2
3
4## 概述
5
6矩形区域。
7
8**起始版本:** 8
9
10**相关模块:**[NativeWindow](_native_window.md)
11
12**所在头文件:**[external_window.h](external__window_8h.md)
13
14## 汇总
15
16
17### 成员变量
18
19| 成员变量名称 | 描述 |
20| -------- | -------- |
21| [x](#x) | 矩形框起始x坐标。 |
22| [y](#y) | 矩形框起始y坐标。 |
23| [w](#w) | 矩形框宽度。 |
24| [h](#h) | 矩形框高度。 |
25
26
27## x
28
29```
30int32_t Rect::x
31```
32
33**描述:**
34
35矩形框起始x坐标。
36
37
38## y
39
40```
41int32_t Rect::y
42```
43
44**描述:**
45
46矩形框起始y坐标。
47
48
49## w
50
51```
52uint32_t Rext::w
53```
54
55**描述:**
56
57矩形框宽度。
58
59
60## h
61
62```
63uint32_t Rext::h
64```
65
66**描述:**
67
68矩形框高度。
69