The GetEnhMetaFileDescription function retrieves an optional text description from an enhanced-format metafile and copies the string to the specified buffer.
UINT GetEnhMetaFileDescription(
HENHMETAFILE hemf, |
// handle of enhanced metafile |
UINT cchBuffer, |
// size of text buffer, in characters |
LPTSTR lpszDescription |
// address of text buffer |
); |
If the optional text description exists and the buffer pointer is NULL, the return value is the length of the text string, in characters.
If the optional text description exists and the buffer pointer is a valid pointer, the return value is the number of characters copied into the buffer.
If the optional text description does not exist, the return value is zero.
If the function fails, the return value is GDI_ERROR. To get extended error information, call GetLastError.
The optional text description contains two strings, the first identifying the application that created the enhanced metafile and the second identifying the picture contained in the metafile. The strings are separated by a null character and terminated with two null characters ¾ for example, “XYZ Graphics Editor\0Bald Eagle\0\0” where \0 represents the null character.
Where text arguments must use Unicode characters, use this function as a wide-character function. Where text arguments must use characters from the Windows 3.x character set, use this function as an ANSI function.
Windows 95: The maximum length of the description string for an enhanced metafile is 16,384 bytes.
file: /Techref/os/win/api/win32/func/src/f31_7.htm, 3KB, , updated: 2000/4/7 11:19, local time: 2024/11/5 07:20,
18.119.248.44:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f31_7.htm"> GetEnhMetaFileDescription</A> |
Did you find what you needed? |