Unicode Controls & Classes for VB6 - Version 4

clsGpGraphics.ScaleTransform Function

The ScaleTransform method updates this Graphics object's world transformation matrix with the product of itself and a scaling matrix

Syntax
Public Function ScaleTransform (ByVal dX As Single, _
ByVal dY As Single, _
ByVal Order As GpMatrixOrder) As GpStatus
Parameters
Parameter Description
ByVal dX As Single Real number that specifies the horizontal scaling factor in the scaling matrix
ByVal dY As Single Real number that specifies the vertical scaling factor in the scaling matrix
ByVal Order As GpMatrixOrder Specifies the order of multiplication. MatrixOrderPrepend specifies that the scaling matrix is on the left, and MatrixOrderAppend specifies that the scaling matrix is on the right. The default value is MatrixOrderPrepend
Remarks