 |
CreateEnhMetaFile ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The CreateEnhMetaFile function creates a device context for an enhanced-format metafile. This device context can be used to store a device-independent picture. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HDC CreateEnhMetaFile(
HDC hdcRef, // handle to reference DC
LPCTSTR lpFilename, // file name
CONST RECT* lpRect, // bounding rectangle
LPCTSTR lpDescription // description string
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER CreateEnhMetaFile IN gdi32;
INTEGER hdcRef,;
STRING lpFilename,;
STRING @ lpRect,;
STRING lpDescription
|
 |
 |
 |
| Parameters: |
 |
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. |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is a handle to the device context for the enhanced metafile. |
 |
 |
| My comment: |
 |
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. |
 |
 |
| Word Index links for the CreateEnhMetaFile : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2003-05-22 10:47:42 | | Modified: | 2003-05-22 10:50:16 | Visited in last 7 days: 64 |