GdipScaleWorldTransform

 

 

Description

Updates this Graphics object's world transformation matrix with the product of itself and a scaling matrix.

Syntax

GpStatus WINGDIPAPI GdipScaleWorldTransform(

    GpGraphics *graphics,

    REAL sx,

    REAL sy,

    GpMatrixOrder order

);

PowerBASIC Syntax

DECLARE FUNCTION GdipScaleWorldTransform ( _

    BYVAL graphics AS DWORD, _

    BYVAL sx AS SINGLE, _

    BYVAL sy AS SINGLE, _

    BYVAL order AS LONG _

) AS LONG

Parameters

 

graphics

[in] Pointer to the Graphics object.

sx

[in] Simple precision value that specifies the horizontal scaling factor in the scaling matrix.

sy

[in] Simple precision value that specifies the vertical scaling factor in the scaling matrix.

order

[in] Element of the MatrixOrder enumeration that 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.

 

Valid HTML 4.01 Transitional