Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies whether the rotation is appended or prepended to the matrix transformation.
Applies the specified rotation to the transformation matrix of this page object in the specified order.
'Declaration
Public Overloads Sub RotateTransform( _
ByVal angle As System.Single, _
ByVal order As System.Drawing.Drawing2D.MatrixOrder _
)
public void RotateTransform(
System.float angle,
System.Drawing.Drawing2D.MatrixOrder order
)
Parameters
angle
Angle of rotation in degrees.
order
Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies whether the rotation is appended or prepended to the matrix transformation.
Remarks
The rotation operation consists of multiplying the transformation matrix by a matrix whose elements are derived from the angle parameter. This method premultiplies (prepends) or postmultiplies (appends) the transformation matrix of the page object by the rotation matrix according to the order parameter.