• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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**Header file**: [drawing_types.h](drawing__types_8h.md)
13
14## Summary
15
16
17### Member Variables
18
19| Name| Description|
20| -------- | -------- |
21| uint32_t [color](#color) | Color of the rectangle. |
22| double [leftTopRadius](#lefttopradius) | Left top radius of the rectangle. |
23| double [rightTopRadius](#righttopradius) | Right top radius of the rectangle. |
24| double [rightBottomRadius](#rightbottomradius) | Right bottom radius of the rectangle. |
25| double [leftBottomRadius](#leftbottomradius) | Left bottom radius of the rectangle. |
26
27
28## Member Variable Description
29
30
31### color
32
33```
34uint32_t OH_Drawing_RectStyle_Info::color
35```
36**Description**
37
38Color of the rectangle.
39
40
41### leftBottomRadius
42
43```
44double OH_Drawing_RectStyle_Info::leftBottomRadius
45```
46**Description**
47
48Left bottom radius of the rectangle.
49
50
51### leftTopRadius
52
53```
54double OH_Drawing_RectStyle_Info::leftTopRadius
55```
56**Description**
57
58Left top radius of the rectangle.
59
60
61### rightBottomRadius
62
63```
64double OH_Drawing_RectStyle_Info::rightBottomRadius
65```
66**Description**
67
68Right bottom radius of the rectangle.
69
70
71### rightTopRadius
72
73```
74double OH_Drawing_RectStyle_Info::rightTopRadius
75```
76**Description**
77
78Right top radius of the rectangle.
79