TextureBrush.ScaleTransform

ScaleTransform(float, float)

Scales the local geometric transformation of this TextureBrush object by the specified amounts. This method prepends the scaling matrix to the transformation.

public void ScaleTransform(float sx, float sy)
ParameterTypeDescription
sxSingleThe amount by which to scale the transformation in the x direction.
sySingleThe amount by which to scale the transformation in the y direction.

See Also


ScaleTransform(float, float, MatrixOrder)

Scales the local geometric transformation of this TextureBrush object by the specified amounts in the specified order.

public void ScaleTransform(float sx, float sy, MatrixOrder order)
ParameterTypeDescription
sxSingleThe amount by which to scale the transformation in the x direction.
sySingleThe amount by which to scale the transformation in the y direction.
orderMatrixOrderA MatrixOrder enumeration that specifies whether to append or prepend the scaling matrix.

See Also