PdfMatrix Constructor

Initializes a new instance of the PdfMatrix structure.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public PdfMatrix(
	double m11,
	double m12,
	double m21,
	double m22,
	double offsetX,
	double offsetY
)
VB
Public Sub New ( 
	m11 As Double,
	m12 As Double,
	m21 As Double,
	m22 As Double,
	offsetX As Double,
	offsetY As Double
)

Parameters

m11
Type: System.Double
The value in the first row and first column of this PdfMatrix. For more information, see the M11 property.
m12
Type: System.Double
The value in the first row and second column. For more information, see the M12 property.
m21
Type: System.Double
The value in the second row and first column. For more information, see the M21 property.
m22
Type: System.Double
The value in the second row and second column. For more information, see the M22 property.
offsetX
Type: System.Double
The value in the third row and first column. For more information, see the OffsetX property.
offsetY
Type: System.Double
The value in the third row and second column. For more information, see the OffsetY property.

See Also