Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.06 KB

GdipRotateWorldTransform.md

File metadata and controls

54 lines (36 loc) · 1.06 KB

Home

Function name : GdipRotateWorldTransform

Group: GDI+ Graphics - Library: gdiplus


Updates the world transformation matrix of this Graphics object with the product of itself and a rotation matrix.


Code examples:

GDI+: Using Scale and Shear transformations

Declaration:

GpStatus WINGDIPAPI GdipRotateWorldTransform(
	GpGraphics *graphics,
	REAL angle,
	GpMatrixOrder order
)
  

FoxPro declaration:

DECLARE INTEGER GdipRotateWorldTransform IN gdiplus;
	INTEGER graphics,;
	SINGLE  angle,;
	INTEGER ord
  

Parameters:

graphics [in] Handle to the Graphics object.

angle [in] Real number that specifies the angle, in degrees, of rotation.

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


Return value:

Returns GpStatus value, 0 means success.