More...
|
Arrow | Clone () |
|
void | Copy (Arrow arrow) |
|
Color32 | GetColor (Color32 defaultColor) |
|
virtual void | SetVerticesDirty () |
|
virtual void | ClearVerticesDirty () |
|
virtual void | SetComponentDirty () |
|
virtual void | ClearComponentDirty () |
|
virtual void | ClearDirty () |
|
virtual void | SetAllDirty () |
|
|
bool | m_VertsDirty |
|
bool | m_ComponentDirty |
|
Painter | m_Painter |
|
Definition at line 16 of file Arrow.cs.
◆ color
Color32 XCharts.Arrow.color |
|
getset |
the color of arrow. 箭头颜色。
Definition at line 66 of file Arrow.cs.
67 get {
return m_Color; }
68 set {
if (PropertyUtil.SetColor(ref m_Color, value)) SetVerticesDirty(); }
◆ dent
The dent of arrow. 箭头的凹度。
Definition at line 56 of file Arrow.cs.
57 get {
return m_Dent; }
58 set {
if (PropertyUtil.SetStruct(ref m_Dent, value)) SetVerticesDirty(); }
◆ height
float XCharts.Arrow.height |
|
getset |
The height of arrow. 箭头高。
Definition at line 38 of file Arrow.cs.
39 get {
return m_Height; }
40 set {
if (PropertyUtil.SetStruct(ref m_Height, value)) SetVerticesDirty(); }
◆ offset
float XCharts.Arrow.offset |
|
getset |
The offset of arrow. 箭头偏移。
Definition at line 47 of file Arrow.cs.
48 get {
return m_Offset; }
49 set {
if (PropertyUtil.SetStruct(ref m_Offset, value)) SetVerticesDirty(); }
◆ width
float XCharts.Arrow.width |
|
getset |
The widht of arrow. 箭头宽。
Definition at line 29 of file Arrow.cs.
30 get {
return m_Width; }
31 set {
if (PropertyUtil.SetStruct(ref m_Width, value)) SetVerticesDirty(); }
The documentation for this class was generated from the following file: