Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 1.3 KB

GdipScaleTextureTransform.md

File metadata and controls

61 lines (43 loc) · 1.3 KB

Home

Function name : GdipScaleTextureTransform

Group: GDI+ Brush - Library: gdiplus


Updates this texture brush"s current transformation matrix with the product of itself and a scaling matrix.


Code examples:

Adding a background image to VFP report (VFP9, ReportListener)

Declaration:

GpStatus WINGDIPAPI GdipScaleTextureTransform(
	GpTexture* brush,
	REAL sx,
	REAL sy,
	GpMatrixOrder order
);  

FoxPro declaration:

DECLARE INTEGER GdipScaleTextureTransform IN gdiplus;
	INTEGER brush,;
	SINGLE sx,;
	SINGLE sy,;
	INTEGER matrixorder  

Parameters:

brush [in] Handle of the brush object.

sx [in] Real number that specifies the amount to scale in the x direction. sy [in] Real number that specifies the amount to scale in the y direction.

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


Return value:

Returns 0 on success.


Comments:

See also: GdipCreateTexture, GdipResetTextureTransform.