Group: Metafile - Library: gdi32
The CreateEnhMetaFile function creates a device context for an enhanced-format metafile. This device context can be used to store a device-independent picture.
Storing screen shot of a form to enhanced metafile (*.emf)
Copying picture of the active form to the Clipboard using Enhanced Metafile API functions
How to print FoxPro form -- II
HDC CreateEnhMetaFile(
HDC hdcRef, // handle to reference DC
LPCTSTR lpFilename, // file name
CONST RECT* lpRect, // bounding rectangle
LPCTSTR lpDescription // description string
);
DECLARE INTEGER CreateEnhMetaFile IN gdi32;
INTEGER hdcRef,;
STRING lpFilename,;
STRING @ lpRect,;
STRING lpDescription
hdcRef [in] Handle to a reference device for the enhanced metafile.
lpFilename [in] Pointer to the file name for the enhanced metafile to be created.
lpRect [in] Pointer to a RECT structure that specifies the dimensions (in .01-millimeter units) of the picture to be stored in the enhanced metafile.
lpDescription [in] Pointer to a string that specifies the name of the application that created the picture, as well as the picture"s title.
If the function succeeds, the return value is a handle to the device context for the enhanced metafile.
MSDN: The left and top members of the RECT structure pointed to by the lpRect parameter must be less than the right and bottom members, respectively. Points along the edges of the rectangle are included in the picture.
If lpRect is NULL, the graphics device interface (GDI) computes the dimensions of the smallest rectangle that surrounds the picture drawn by the application. The lpRect parameter should be provided where possible.