PDF .NET Library Documentation - PDF Technologies, Inc.
Gets or sets the points the define the markup annotation.

Namespace:  PDFTech
Assembly:  PDFTechLib (in PDFTechLib.dll) Version: 1.0.0.0 (1.7.9.0)

Syntax

C#
public float[] QuadPoints { get; set; }
Visual Basic (Declaration)
Public Property QuadPoints As Single()
Visual C++
public:
property array<float>^ QuadPoints {
	array<float>^ get ();
	void set (array<float>^ value);
}

Remarks

The QuadPoints array must contain 8*n elements specifying the coordinates of n quadrilaterals. Each quadrilateral encompasses a word or group of continuous words in the text underlying the annotation. The coordinates for each quadrilateral are given in the order x1 y1 x2 y2 x3 y3 x4 y4 specifying the quadrilateral's four vertices in counterclockwise order. The text is oriented with respect to the edge connecting points (x1,y1) and (x2,y2).

See Also