AnnotBorderStyle Constructor (AnnotBorderStyleStyle, Double, Double, Double, Double) |
Creates a new border style with given parameters.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public AnnotBorderStyle(
AnnotBorderStyleStyle s,
double b_width,
double b_hr,
double b_vr,
double[] dash_Array
)
Public Sub New (
s As AnnotBorderStyleStyle,
b_width As Double,
b_hr As Double,
b_vr As Double,
dash_Array As Double()
)
public:
AnnotBorderStyle(
[InAttribute] AnnotBorderStyleStyle s,
[InAttribute] double b_width,
[InAttribute] double b_hr,
[InAttribute] double b_vr,
[InAttribute] array<double>^ dash_Array
)
pdftron.PDF.AnnotBorderStyle = function(s, b_width, b_hr, b_vr, dash_Array);
Parameters
- s
- Type: pdftron.PDFAnnotBorderStyleStyle
The border style.
- b_width
- Type: SystemDouble
The border width expressed in the default user space.
- b_hr
- Type: SystemDouble
The horizontal corner radius expressed in the default user space.
- b_vr
- Type: SystemDouble
The vertical corner radius expressed in the default user space.
- dash_Array
- Type: SystemDouble
An Array of numbers defining a pattern of dashes and gaps to be used
in drawing the border. The dash Array is specified in the same format as in the line
dash pattern parameter of the graphics state except that the phase is assumed to be 0.
Remarks If the corner radii are 0, the border has square (not rounded) corners; if
the border width is 0, no border is drawn.
See Also