1# ArkUI_Margin
2
3
4## Overview
5
6Describes the margins of a component.
7
8**Since**: 12
9
10**Related module**: [ArkUI_NativeModule](_ark_u_i___native_module.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name| Description|
19| -------- | -------- |
20| float [top](#top) | Top margin, in vp. |
21| float [right](#right) | Right margin, in vp. |
22| float [bottom](#bottom) | Bottom margin, in vp. |
23| float [left](#left) | Left margin, in vp. |
24
25
26## Member Variable Description
27
28
29### bottom
30
31```
32float ArkUI_Margin::bottom
33```
34**Description**
35
36Bottom margin, in vp.
37
38
39### left
40
41```
42float ArkUI_Margin::left
43```
44**Description**
45
46Left margin, in vp.
47
48
49### right
50
51```
52float ArkUI_Margin::right
53```
54**Description**
55
56Right margin, in vp.
57
58
59### top
60
61```
62float ArkUI_Margin::top
63```
64**Description**
65
66Top margin, in vp.
67<!--no_check-->