Border
Border settings for drawing outlines around elements, controlling line style, thickness, and color in document coordinates. Use to render frames consistently across pages and containers.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Editing
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public class Border
Inheritance: objectBorder
Constructors
Initializes a new instance of the Border class.
Initializes a new instance of the Border class with the specified thickness, style, and color.
public Border(double thickness, BorderStyle borderStyle, ColorBase color)
The thickness of the border in device-independent units.
borderStyleBorderStyleThe visual style of the border (such as solid, dashed, dotted).
colorColorBaseThe color of the border.
Properties
Gets the visual style of the border.
public BorderStyle BorderStyle { get; }
An enumeration value that specifies how the border is rendered (None, Single, Dotted, Dashed, etc.).
Gets the color of the border.
public ColorBase Color { get; }
A ColorBase object that represents the color used to render the border.