TranslateTransform

Pen.TranslateTransform method (1 of 2)

Translates the local geometric transformation by the specified dimensions. This method prepends the translation to the transformation.

public void TranslateTransform(float dx, float dy)
ParameterTypeDescription
dxSingleThe value of the translation in x.
dySingleThe value of the translation in y.

See Also


Pen.TranslateTransform method (2 of 2)

Translates the local geometric transformation by the specified dimensions in the specified order.

public void TranslateTransform(float dx, float dy, MatrixOrder order)
ParameterTypeDescription
dxSingleThe value of the translation in x.
dySingleThe value of the translation in y.
orderMatrixOrderThe order (prepend or append) in which to apply the translation.

See Also