1# OH_Drawing_RectStyle_Info
2
3
4## Overview
5
6The OH_Drawing_RectStyle_Info struct describes the style of a rectangle.
7
8**Since**: 12
9
10**Related module**: [Drawing](_drawing.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name| Description|
19| -------- | -------- |
20| uint32_t [color](#color) | Color of the rectangle. |
21| double [leftTopRadius](#lefttopradius) | Left top radius of the rectangle. |
22| double [rightTopRadius](#righttopradius) | Right top radius of the rectangle. |
23| double [rightBottomRadius](#rightbottomradius) | Right bottom radius of the rectangle. |
24| double [leftBottomRadius](#leftbottomradius) | Left bottom radius of the rectangle. |
25
26
27## Member Variable Description
28
29
30### color
31
32```
33uint32_t OH_Drawing_RectStyle_Info::color
34```
35**Description**
36
37Color of the rectangle.
38
39
40### leftBottomRadius
41
42```
43double OH_Drawing_RectStyle_Info::leftBottomRadius
44```
45**Description**
46
47Left bottom radius of the rectangle.
48
49
50### leftTopRadius
51
52```
53double OH_Drawing_RectStyle_Info::leftTopRadius
54```
55**Description**
56
57Left top radius of the rectangle.
58
59
60### rightBottomRadius
61
62```
63double OH_Drawing_RectStyle_Info::rightBottomRadius
64```
65**Description**
66
67Right bottom radius of the rectangle.
68
69
70### rightTopRadius
71
72```
73double OH_Drawing_RectStyle_Info::rightTopRadius
74```
75**Description**
76
77Right top radius of the rectangle.
78