Interface IRadBorder
Defines the contract for a border control that extends content view functionality. This interface provides properties for customizing border appearance including colors, brushes, corner radius, and thickness.
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public interface IRadBorder : IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout
Properties
BackgroundColor
Gets the background color of the border control.
Declaration
Color BackgroundColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
A Microsoft.Maui.Graphics.Color representing the background color. |
BorderBrush
Gets the paint brush used for drawing the border.
Declaration
Paint BorderBrush { get; }
Property Value
Microsoft.Maui.Graphics.Paint
A Microsoft.Maui.Graphics.Paint object that defines how the border is painted. |
BorderColor
Gets the color of the border outline.
Declaration
Color BorderColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
A Microsoft.Maui.Graphics.Color representing the border color. |
BorderThickness
Gets the thickness of the border outline.
Declaration
Thickness BorderThickness { get; }
Property Value
Microsoft.Maui.Thickness
A Microsoft.Maui.Thickness structure that specifies the width of each side of the border. |
CornerRadius
Gets the corner radius for the border, defining how rounded the corners appear.
Declaration
Thickness CornerRadius { get; }
Property Value
Microsoft.Maui.Thickness
A Microsoft.Maui.Thickness structure that specifies the radius for each corner of the border. |