Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies whether the scaling operation is prepended or appended to the transformation matrix.
Applies the specified scaling operation to the transformation matrix of this page object in the specified order.
'Declaration
Public Overloads Sub ScaleTransform( _
ByVal sx As System.Single, _
ByVal sy As System.Single, _
ByVal order As System.Drawing.Drawing2D.MatrixOrder _
)
public void ScaleTransform(
System.float sx,
System.float sy,
System.Drawing.Drawing2D.MatrixOrder order
)
Parameters
sx
Scale factor in the x direction.
sy
Scale factor in the y direction.
order
Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies whether the scaling operation is prepended or appended to the transformation matrix.
Remarks
The scaling operation consists of multiplying the transformation matrix by a diagonal matrix whose elements are (sx, sy, 1). This method premultiplies (prepends) the transformation matrix of the page object by the scaling matrix.