|
Description
Updates
this Graphics
object's world transformation matrix with the product of itself and
another matrix.
Syntax
GpStatus WINGDIPAPI GdipMultiplyWorldTransform(
GpGraphics
*graphics,
GDIPCONST
GpMatrix *matrix,
GpMatrixOrder
order
);
PowerBASIC Syntax
DECLARE FUNCTION GdipMultiplyWorldTransform ( _
BYVAL graphics
AS DWORD, _
BYVAL matrix AS
DWORD, _
BYVAL order AS
LONG _
) AS LONG
Parameters
graphics
[in]
Pointer to the Graphics
object.
matrix
[in]
Pointer
to a matrix that will be multiplied by the world transformation matrix
of this Graphics object.
order
[in]
Element
of the MatrixOrder enumeration that specifies the
order of multiplication. MatrixOrderPrepend
specifies that the passed matrix is on the left, and MatrixOrderAppend
specifies that the passed matrix is on the right. The default value is MatrixOrderPrepend.
|