Initializes a new instance of the class.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfPath(
	PdfPen pen,
	PointF[] points,
	byte[] pathTypes
)
Public Sub New ( 
	pen As PdfPen,
	points As PointF(),
	pathTypes As Byte()
)
public:
PdfPath(
	PdfPen^ pen, 
	array<PointF>^ points, 
	array<unsigned char>^ pathTypes
)
new : 
        pen : PdfPen * 
        points : PointF[] * 
        pathTypes : byte[] -> PdfPath

Parameters

pen
PdfPen
The pen.
points
array<PointF>[]()[][]
The points.
pathTypes
array<Byte>[]()[][]
The path types.

See Also