Draws a polygon.

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

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void DrawPolygon(
	PdfPen pen,
	PointF[] points
)
Public Sub DrawPolygon ( 
	pen As PdfPen,
	points As PointF()
)
public:
void DrawPolygon(
	PdfPen^ pen, 
	array<PointF>^ points
)
member DrawPolygon : 
        pen : PdfPen * 
        points : PointF[] -> unit 

Parameters

pen
PdfPen
The pen.
points
array<PointF>[]()[][]
The points.

See Also