LAnnEncrypt::GetMetafile

#include "ltwrappr.h"

virtual L_INT LAnnEncrypt::GetMetafile(phMetafile)

Retrieves the metafile handle associated with an Encrypt object.

Parameters

HMETAFILE * phMetafile

Pointer to a variable to be updated with the handle to a metafile.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

If this function is successful, the address pointed by phMetafile will be updated with the metafile handle.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LAnnEncrypt_GetMetafileExample() 
{ 
   L_INT nRet; 
 
   LAnnEncrypt MyAnnEncrypt; 
 
   HMETAFILE hMetafile; 
 
   //...metafile is associated with Encrypt annotation 
 
   nRet = MyAnnEncrypt.GetMetafile(&hMetafile); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   //... do something with  hMetafile  
 
   return SUCCESS; 
} 
Help Version 20.0.2020.4.5
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help