LAnnStamp::GetMetafile

Summary

Retrieves the metafile handle associated with a stamp object.

Syntax

#include "ltwrappr.h"

virtual L_INT LAnnStamp::GetMetafile(phMetafile)

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 LAnnStamp_GetMetafileExample(LAnnStamp& MyAnnStamp) 
{ 
	L_INT nRet; 
   HMETAFILE hMetafile; 
 
   //...metafile is associated with stamp annotation 
   nRet = MyAnnStamp.GetMetafile(&hMetafile); 
	if(nRet != SUCCESS) 
		return nRet; 
 
   //... do something with  hMetafile  
 
	return SUCCESS; 
} 
Help Version 22.0.2023.2.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.