PageBoxStyleDashPattern Property

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Gets or sets the dash pattern.

Namespace:  Apitron.PDF.Kit.FixedLayout.PageProperties
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public BoxStyleDashPattern DashPattern { get; set; }

Property Value

Type: BoxStyleDashPattern
The dash pattern.
Examples

C#
PageBoxStyle pbs = new PageBoxStyle();
pbs.BoxStyleDashPattern = new BoxStyleDashPattern(new int[] { 10, 10 }, 5);
page.BoxStyle = pbs;
See Also

Reference