Initialize a new instance of PdfPolygonAnnotation.

Namespace: Spire.Pdf.Annotations
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfPolygonAnnotation(
	PdfPageBase page,
	PointF[] points
)
Public Sub New ( 
	page As PdfPageBase,
	points As PointF()
)
public:
PdfPolygonAnnotation(
	PdfPageBase^ page, 
	array<PointF>^ points
)
new : 
        page : PdfPageBase * 
        points : PointF[] -> PdfPolygonAnnotation

Parameters

page
PdfPageBase
The page
points
array<PointF>[]()[][]
The polygon vertices

See Also