Skip to content

Latest commit

 

History

History
58 lines (41 loc) · 1.12 KB

GdipScaleMatrix.md

File metadata and controls

58 lines (41 loc) · 1.12 KB

Home

Function name : GdipScaleMatrix

Group: GDI+ Matrix - Library: gdiplus


Updates this matrix with the product of itself and a scaling matrix.


Code examples:

Custom GDI+ class
GDI+: Using Scale and Shear transformations

Declaration:

GpStatus WINGDIPAPI GdipScaleMatrix(
	GpMatrix *matrix,
	REAL scaleX,
	REAL scaleY,
	GpMatrixOrder order
)  

FoxPro declaration:

DECLARE INTEGER GdipScaleMatrix IN gdiplus;
	INTEGER matrix,;
	SINGLE  scaleX,;
	SINGLE  scaleY,;
	INTEGER ord
  

Parameters:

matrix [in] Handle to a Matrix object.

scaleX [in] Real number that specifies the horizontal scale factor.

scaleY [in] Real number that specifies the vertical scale factor.

order [in] Element of the MatrixOrder enumeration that specifies the order of the multiplication.


Return value:

Returns GpStatus value, 0 means success.