Border¶
Summary¶
Represents the border.
Signature¶
1 |
|
Namespace¶
cAlgo.API
Properties¶
Name | Description |
---|---|
Child { get; set; } | Gets or sets the border child object. |
BorderThickness { get; set; } | 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". |
Padding { get; set; } | 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". |
CornerRadius { get; set; } | 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). |
BorderColor { get; set; } | 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". |
BackgroundColor { get; set; } | 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". |
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¶
Last update: February 3, 2023