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.

Definition

Properties

BackgroundColor

Gets the background color of the border control.

Declaration

cs-api-definition
Color BackgroundColor { get; }

Property Value

Color

A Color representing the background color.

BorderBrush

Gets the paint brush used for drawing the border.

Declaration

cs-api-definition
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

cs-api-definition
Color BorderColor { get; }

Property Value

Color

A Color representing the border color.

BorderThickness

Gets the thickness of the border outline.

Declaration

cs-api-definition
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

cs-api-definition
Thickness CornerRadius { get; }

Property Value

Thickness

A Thickness structure that specifies the radius for each corner of the border.