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.
Definition
Namespace:Telerik.Maui
Assembly:Telerik.Maui.Core.dll
Syntax:
public interface IRadBorder : IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout
Derived Classes:
Properties
BackgroundColor
Color
Gets the background color of the border control.
Color BackgroundColor { get; }
A Color representing the background color.
BorderBrush
Paint
Gets the paint brush used for drawing the border.
Paint BorderBrush { get; }
A Paint object that defines how the border is painted.
BorderColor
Color
Gets the color of the border outline.
Color BorderColor { get; }
A Color representing the border color.
BorderThickness
Thickness
Gets the thickness of the border outline.
Thickness BorderThickness { get; }
A Thickness structure that specifies the width of each side of the border.
CornerRadius
Thickness
Gets the corner radius for the border, defining how rounded the corners appear.
Thickness CornerRadius { get; }
A Thickness structure that specifies the radius for each corner of the border.