AnnotBorder
From PDF XChange PDF SDK
Options Table
Name | Type | Value | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
S | Integer | Specifies the annotation's border style
Possible values are:
Default value: 0 (Solid) | ||||||||||
E | Integer | Specifies the annotation's border style effect
Possible values are:
Default value: 0 (Solid) | ||||||||||
EL | Double | Specifies the effect level.
Default value: 1.0 | ||||||||||
W | Double | Specifies the border width.
Default value: 1.0 | ||||||||||
D | Array | Array of Double
Specifies the dash array defining a pattern of dashes and gaps that shall be used in drawing a dashed border. |
Sample
1 | //C# |
2 | var border = new PDFXEdit.PXC_AnnotBorder(); |
3 | border.nStyle = PDFXEdit.PXC_AnnotBorderStyle.ABS_Dashed; |
4 | border.nWidth = 4.0f; |
5 | border.DashArray = new float [10]; |
6 | border.DashArray[0] = border.DashArray[1] = 16.0f; //Width of dashes |
7 | border.nDashCount = 2; //Number of dashes |