PdfMatrix Constructor (Rectangle,
Point
)
|
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(
Rectangle rect,
Point[] plgpts
)
Public Sub New (
rect As Rectangle,
plgpts As Point()
)
public:
PdfMatrix(
Rectangle rect,
array<Point>^ plgpts
)
new :
rect : Rectangle *
plgpts : Point[] -> PdfMatrix
Parameters
-
rect
-
Type:
System.Drawing
Rectangle
A System.Drawing.Rectangle structure that represents the rectangle.
-
plgpts
-
Type:
System.Drawing
Point
An array of three System.Drawing.Point 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