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





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

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void TranslateTransform (
    float dx,
    float dy,
    MatrixOrder order
)

Visual Basic  Copy Code

Sub TranslateTransform( _
    dx As Single, _
    dy As Single, _
    order As MatrixOrder _
)

 Parameters

dx
The x component of the translation.
dy
The y component of the translation.
order
Member of the .NET MatrixOrder enumeration that specifies whether the translation is prepended or appended to the transformation matrix.

 See Also