Adds a polygon to this path.
Syntax

[C#]

void AddPolygon(Point[] pts);
void AddPolygon(PointF[] pts);

[Visual Basic]

Sub AddPolygon(pts As Point())
Sub AddPolygon(pts As PointF())
Params
Name Description
pts An array of points that defines the polygon to add.
Notes

None.

Example

None.