Graphics.TranslateTransform
Contents
[
Hide
]TranslateTransform(float, float)
Changes the origin of the coordinate system by prepending the specified translation to the transformation matrix of this Graphics.
public void TranslateTransform(float dx, float dy)
Parameter | Type | Description |
---|---|---|
dx | Single | The x-coordinate of the translation. |
dy | Single | The y-coordinate of the translation. |
See Also
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
TranslateTransform(float, float, MatrixOrder)
Changes the origin of the coordinate system by applying the specified translation to the transformation matrix of this Graphics in the specified order.
public void TranslateTransform(float dx, float dy, MatrixOrder order)
Parameter | Type | Description |
---|---|---|
dx | Single | The x-coordinate of the translation. |
dy | Single | The y-coordinate of the translation. |
order | MatrixOrder | Member of the MatrixOrder enumeration that specifies whether the translation is prepended or appended to the transformation matrix. |
See Also
- enum MatrixOrder
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing