TextureBrush.TranslateTransform

TranslateTransform(float, float)

Translates the local geometric transformation of this TextureBrush object by the specified dimensions. This method prepends the translation to the transformation.

public void TranslateTransform(float dx, float dy)
ParameterTypeDescription
dxSingleThe dimension by which to translate the transformation in the x direction.
dySingleThe dimension by which to translate the transformation in the y direction.

See Also


TranslateTransform(float, float, MatrixOrder)

Translates the local geometric transformation of this TextureBrush object by the specified dimensions in the specified order.

public void TranslateTransform(float dx, float dy, MatrixOrder order)
ParameterTypeDescription
dxSingleThe dimension by which to translate the transformation in the x direction.
dySingleThe dimension by which to translate the transformation in the y direction.
orderMatrixOrderThe order (prepend or append) in which to apply the translation.

See Also