Construct a instance to the geometric transform defined by the specified rectangle and array of points.

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 PdfMatrix(
	RectangleF rect,
	PointF[] plgpts
)
Public Sub New ( 
	rect As RectangleF,
	plgpts As PointF()
)
public:
PdfMatrix(
	RectangleF rect, 
	array<PointF>^ plgpts
)
new : 
        rect : RectangleF * 
        plgpts : PointF[] -> PdfMatrix

Parameters

rect
RectangleF
A System.Drawing.RectangleF structure that represents the rectangle.
plgpts
array<PointF>[]()[][]
An array of three System.Drawing.PointF structures that represents the points of a parallelogram to which the upper-left, upper-right, and lower-left corners of the rectangle is to be transformed. The lower-right corner of the parallelogram is implied by the first three corners.

See Also