ScaleTransform

MetafileRecorderGraphics2D.ScaleTransform method (1 of 2)

Applies the specified scaling operation to the transformation matrix of this Graphics by prepending it to the object’s transformation matrix.

public void ScaleTransform(float sx, float sy)
ParameterTypeDescription
sxSingleScale factor in the x direction.
sySingleScale factor in the y direction.

See Also


MetafileRecorderGraphics2D.ScaleTransform method (2 of 2)

Applies the specified scaling operation to the transformation matrix of this Graphics in the specified order.

public void ScaleTransform(float sx, float sy, MatrixOrder order)
ParameterTypeDescription
sxSingleScale factor in the x direction.
sySingleScale factor in the y direction.
orderMatrixOrderSpecifies whether the scaling operation is prepended or appended to the transformation matrix.

See Also