Apitron.PDF.Kit library for .NET
Assembly: Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Initializes a new instance of the PageBoxStyle class.
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 PageBoxStyle( BoxStyleColor color, BoxStyleDashPattern dashPattern, double lineWidth = 1 )
Parameters
- color
- Type: Apitron.PDF.Kit.FixedLayout.PagePropertiesBoxStyleColor
The color. - dashPattern
- Type: Apitron.PDF.Kit.FixedLayout.PagePropertiesBoxStyleDashPattern
The dash pattern. - lineWidth (Optional)
- Type: SystemDouble
Width of the line.
Examples
C#
PageBoxStyle pageBoxStyle = new PageBoxStyle(new BoxStyleColor(50, 50, 50), new BoxStyleDashPattern(new int[] { 10, 10 }, 5));
See Also