LinkAnnotationQuadPoints Property

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Gets or sets an array of 8 × n numbers specifying the coordinates of n quadrilaterals in default user space that comprise the region in which the link should be activated.

Namespace:  Apitron.PDF.Kit.Interactive.Annotations
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public double[] QuadPoints { get; set; }

Property Value

Type: Double
The quad points.
Examples

C#
LinkAnnotation link = new LinkAnnotation( new Boundary(10, 170, 100, 190), AnnotationFlags.Locked, new AnnotationBorderStyle(5, AnnotationBorderType.Beveled));
Boundary boundary = link.Boundary;
link.QuadPoints = new double[]
           {
               boundary.Left - 10, boundary.Bottom - 10, boundary.Right + 10,
               boundary.Bottom - 10, boundary.Right + 10, boundary.Top + 10,
               boundary.Left - 10, boundary.Top + 10,
           };
See Also

Reference