Search
IGraphics.ScaleTransform Method (Single, Single, MatrixOrder)
See Also
 





Applies the specified scaling operation to the transformation matrix of this IGraphics object in the specified order.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

void ScaleTransform (
    float sx,
    float sy,
    MatrixOrder order
)

Visual Basic  Copy Code

Sub ScaleTransform( _
    sx As Single, _
    sy As Single, _
    order As MatrixOrder _
)

 Parameters

sx
The scale factor in the x direction.
sy
The scale factor in the y direction.
order
Member of the .NET MatrixOrder enumeration that specifies whether the scaling operation is prepended or appended to the transformation matrix.

 See Also