PdfMatrix Constructor (Single, Single, Single, Single, Single, Single)
|
Construct a instance as the identity matrix.
Namespace:
Spire.Pdf.Graphics
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public PdfMatrix(
float m11,
float m12,
float m21,
float m22,
float dx,
float dy
)
Public Sub New (
m11 As Single,
m12 As Single,
m21 As Single,
m22 As Single,
dx As Single,
dy As Single
)
public:
PdfMatrix(
float m11,
float m12,
float m21,
float m22,
float dx,
float dy
)
new :
m11 : float32 *
m12 : float32 *
m21 : float32 *
m22 : float32 *
dx : float32 *
dy : float32 -> PdfMatrix
Parameters
-
m11
-
Type:
System
Single
The value in the first row and first column.
-
m12
-
Type:
System
Single
The value in the first row and second column.
-
m21
-
Type:
System
Single
The value in the second row and first column.
-
m22
-
Type:
System
Single
The value in the second row and second column.
-
dx
-
Type:
System
Single
The value in the third row and first column.
-
dy
-
Type:
System
Single
The value in the third row and second column.
See Also