Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.01 KB

GdipReleaseDC.md

File metadata and controls

49 lines (32 loc) · 1.01 KB

Home

Function name : GdipReleaseDC

Group: GDI+ Graphics - Library: gdiplus


Releases a device context handle obtained by a previous call to the GdipGetHDC with this Graphics handle.


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipReleaseDC(
	GpGraphics* graphics,
	HDC hdc
)
  

FoxPro declaration:

DECLARE INTEGER GdipReleaseDC IN gdiplus;
	INTEGER graphics,;
	INTEGER hdc
  

Parameters:

graphics [in] Handle to a Graphics object obtained from GdipCreateFromHDC, GdipCreateFromHDC2, GdipCreateFromHWND or GdipGetImageGraphicsContext functions.

hdc [in] Handle to a device context obtained by a previous call to the GdipGetHDC method with this Graphics handle.


Return value:

This call does not return a value.