Button¶
Summary¶
Represents the button.
Signature
1 |
|
Namespace¶
cAlgo.API
Examples¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|
See Also¶
Methods¶
RaiseClick¶
Signature
1 |
|
Return Value
void
Accept¶
Signature
1 |
|
Parameters
Name | Type | Description |
---|---|---|
visitor | IChartControlVisitor |
Return Value
void
Properties¶
Text¶
Summary
Gets or sets the text.
Signature
1 |
|
Return Value
string
CornerRadius¶
Summary
Gets or sets the border corner radius. Property value can be set using CornerRadius, number, or a string: newCornerRadius(5), new CornerRadius(1, 2, 3, 4).
Signature
1 |
|
Return Value
CornerRadius
Related Tutorials
BorderColor¶
Summary
Gets or sets the border line color. Check the Color class for the ARGB (alpha, red, green, blue) color values, oruse the strings Color.Red, Color.FromName("Red"), Color.FromArgb(255, 0, 0), Color.FromHex("#ff0000"), "Red","#ff0000".
Signature
1 |
|
Return Value
Color
BorderThickness¶
Summary
Gets or sets the border thickness.
Signature
1 |
|
Return Value
Thickness
Content¶
Summary
Gets or sets the content.
Signature
1 |
|
Return Value
ControlBase
Events¶
Click¶
Summary
Occurs when the button is clicked.
Signature
1 |
|