• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# OH_Rect
2
3
4## 概述
5
6定义录屏界面的宽高以及画面信息。
7
8**系统能力**:SystemCapability.Multimedia.Media.AVScreenCapture
9
10**起始版本:**
11
1210
13
14**相关模块:**
15
16[AVScreenCapture](_a_v_screen_capture.md)
17
18
19## 汇总
20
21
22### 成员变量
23
24| 名称 | 描述 |
25| -------- | -------- |
26| [x](#x) | int32_t<br/>录屏界面的X坐标。 |
27| [y](#y) | int32_t<br/>录屏界面的Y坐标。 |
28| [width](#width) | int32_t<br/>录屏界面的宽度。 |
29| [height](#height) | int32_t<br/>录屏界面的高度。 |
30
31
32## 结构体成员变量说明
33
34
35### height
36
37```
38int32_t OH_Rect::height
39```
40
41**描述:**
42
43录屏界面的高度。
44
45
46### width
47
48```
49int32_t OH_Rect::width
50```
51
52**描述:**
53
54录屏界面的宽度。
55
56
57### x
58
59```
60int32_t OH_Rect::x
61```
62
63**描述:**
64
65录屏界面的X坐标。
66
67
68### y
69
70```
71int32_t OH_Rect::y
72```
73
74**描述:**
75
76录屏界面的Y坐标。
77