AnnotationBorder
Border settings for annotations, including width, style, and optional dash pattern used when rendering the outline.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Annotations
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public class AnnotationBorder
Inheritance: objectAnnotationBorder
Constructors
Create a border with default width and style; adjust properties to change the rendered outline.
public AnnotationBorder()
Create a border using the specified width, style, and dash pattern for dashed styles.
public AnnotationBorder(double width, AnnotationBorderStyle style, double[] dashArray)
The border width in user units.
styleAnnotationBorderStyleThe border style for the annotation.
dashArraydouble[]The dash array.
Properties
Gets or sets the dash pattern used when Style is dashed; values alternate dash and gap lengths.
public IEnumerable<double> DashArray { get; set; }
An array of numbers defining the lengths of dashes and gaps for dashed borders.
Gets or sets how the outline is rendered, such as solid, dashed, or simulated 3D styles.
public AnnotationBorderStyle Style { get; set; }
The border style that determines how the border line is rendered.