|
| ComponentTheme (Theme theme) |
|
virtual void | Copy (ComponentTheme theme) |
|
virtual void | Reset (ComponentTheme defaultTheme) |
|
virtual void | SetVerticesDirty () |
|
virtual void | ClearVerticesDirty () |
|
virtual void | SetComponentDirty () |
|
virtual void | ClearComponentDirty () |
|
virtual void | ClearDirty () |
|
virtual void | SetAllDirty () |
|
|
Font | m_Font |
|
Color | m_TextColor |
|
Color | m_TextBackgroundColor |
|
int | m_FontSize = 18 |
|
bool | m_VertsDirty |
|
bool | m_ComponentDirty |
|
Painter | m_Painter |
|
Definition at line 17 of file ComponentTheme.cs.
◆ font
Font XCharts.ComponentTheme.font |
|
getset |
the font of text. 字体。
Definition at line 32 of file ComponentTheme.cs.
33 get {
return m_Font; }
34 set { m_Font = value; SetComponentDirty(); }
◆ fontSize
int XCharts.ComponentTheme.fontSize |
|
getset |
the font size of text. 文本字体大小。
Definition at line 59 of file ComponentTheme.cs.
60 get {
return m_FontSize; }
61 set {
if (PropertyUtil.SetStruct(ref m_FontSize, value)) SetComponentDirty(); }
◆ textBackgroundColor
Color XCharts.ComponentTheme.textBackgroundColor |
|
getset |
the color of text. 文本颜色。
Definition at line 50 of file ComponentTheme.cs.
51 get {
return m_TextBackgroundColor; }
52 set {
if (PropertyUtil.SetColor(ref m_TextBackgroundColor, value)) SetComponentDirty(); }
◆ textColor
Color XCharts.ComponentTheme.textColor |
|
getset |
the color of text. 文本颜色。
Definition at line 41 of file ComponentTheme.cs.
42 get {
return m_TextColor; }
43 set {
if (PropertyUtil.SetColor(ref m_TextColor, value)) SetComponentDirty(); }
The documentation for this class was generated from the following file: