Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.04 KB

GdipGetDpiY.md

File metadata and controls

49 lines (33 loc) · 1.04 KB

Home

Function name : GdipGetDpiY

Group: GDI+ Graphics - Library: gdiplus


Gets the vertical resolution, in dots per inch, of the display device associated with this Graphics handle.


Declaration:

GpStatus WINGDIPAPI GdipGetDpiY(
	GpGraphics *graphics,
	REAL* dpi
)  

FoxPro declaration:

DECLARE INTEGER GdipGetDpiY IN gdiplus;
	INTEGER graphics,;
	SINGLE @dpi  

Parameters:

graphics [in] Handle to the Graphics object.

dpi [out] The vertical resolution, in dots per inch, of the display device associated with this Graphics handle.


Return value:

Returns GpStatus value, 0 means success.


Comments:

See also: GdipGetDpiX, GdipGetImageVerticalResolution, GdipBitmapSetResolution.