PdfMatrix Constructor (RectangleF,
PointF
)
|
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: 11.3.7.0 (11.3.7.1046)
Syntax
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
-
Type:
System.Drawing
RectangleF
A System.Drawing.RectangleF structure that represents the rectangle.
-
plgpts
-
Type:
System.Drawing
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