InterfaceIRadBorder
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.
Definition
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
Color
A Color representing the background color.
BorderBrush
Gets the paint brush used for drawing the border.
Declaration
Paint BorderBrush { get; }
Property Value
Paint
A Paint object that defines how the border is painted.
BorderColor
Gets the color of the border outline.
Declaration
Color BorderColor { get; }
Property Value
Color
A Color representing the border color.
BorderThickness
Gets the thickness of the border outline.
Declaration
Thickness BorderThickness { get; }
Property Value
Thickness
A 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
Thickness
A Thickness structure that specifies the radius for each corner of the border.