AnnotationBorderDashPattern Property |
Gets or sets the dash pattern.
Namespace:
Atalasoft.PdfDoc.Generating.Annotations
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.0.0.251 (.NET 4.5.2, x86)
Syntaxpublic IEnumerable<double> DashPattern { get; set; }Public Property DashPattern As IEnumerable(Of Double)
Get
Set
Property Value
Type:
IEnumerableDouble
The dash pattern.
Examples
This is a set of numbers that indicate how many PDF units the line will be drawn and skipped. For example, to have
lines drawn with a 3 unit dash seprated by 1 unit spaces, you would use new double[] { 3, 1 }
See Also