Border¶
Summary¶
Represents the border.
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
See Also¶
Properties¶
Child¶
Summary
Gets or sets the border child object.
Signature
1 |
|
Return Value
ControlBase
BorderThickness¶
Summary
Gets or sets the border thickness. Property value can be set using Thickness, number, or a string new Thickness(5),new Thickness(1, 2, 3, 4), 5, "5", "1 2 3 4".
Signature
1 |
|
Return Value
Thickness
Padding¶
Summary
Gets or sets the border padding thickness. Property value can be set using Thickness, number, or a string newThickness(5), new Thickness(1, 2, 3, 4), 5, "5", "1 2 3 4".
Signature
1 |
|
Return Value
Thickness
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
BackgroundColor¶
Summary
Gets or sets the color of the border background. Check the Color class for the ARGB (alpha, red, green, blue) colorvalues, or use the strings Color.Red, Color.FromName("Red"), Color.FromArgb(255, 0, 0), Color.FromHex("#ff0000"),"Red", "#ff0000".
Signature
1 |
|
Return Value
Color