Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.03 KB

File metadata and controls

53 lines (35 loc) · 1.03 KB

Home

Function name : GdipSetSmoothingMode

Group: GDI+ Graphics - Library: gdiplus


Sets the rendering quality of the Graphics object.


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipSetSmoothingMode(
	GpGraphics *graphics,
	SmoothingMode smoothingMode)  

FoxPro declaration:

DECLARE INTEGER GdipSetSmoothingMode IN gdiplus;
	INTEGER graphics,;
	INTEGER smoothingMode  

Parameters:

graphics [in] Handle of a Graphics object.

smoothingMode [in] Element of the SmoothingMode enumeration.


Return value:

Returns Ok (0) if succeeded.


Comments:

See also: GdipGetSmoothingMode.

SmoothingMode enumeration.