Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies whether the translation is prepended or appended to the transformation matrix.
Applies the specified translation to the transformation matrix of this page object in the specified order.
'Declaration
Public Overloads Sub TranslateTransform( _
ByVal dx As System.Single, _
ByVal dy As System.Single, _
ByVal order As System.Drawing.Drawing2D.MatrixOrder _
)
public void TranslateTransform(
System.float dx,
System.float dy,
System.Drawing.Drawing2D.MatrixOrder order
)
Parameters
dx
x component of the translation.
dy
y component of the translation.
order
Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies whether the translation is prepended or appended to the transformation matrix.
Remarks
The translation operation consists of multiplying the transformation matrix by a matrix whose translation part is the dx and dy parameters. This method premultiplies (prepends) or postmultiplies (appends) the transformation matrix of the page object by the translation matrix according to the order parameter.