LAnnotation::Copy

#include "ltwrappr.h"

virtual L_INT LAnnotation::Copy(hAnnSource)

virtual L_INT LAnnotation::Copy(LAnnSource)

HANNOBJECT hAnnSource;

handle to the associated annotation object

LAnnotation& LAnnSource;

the annotation object to be copied

Makes a copy of the specified annotation object.

Parameter

Description

hAnnSource

Handle to the associated annotation object to be copied.

LAnnSource

The annotation object to be copied.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

LAnnotation::Copy(hAnnSource) will update the class object with the handle of the annotation object created by the copy.

LAnnotation::Copy(LAnnSource) will update the class object with the passed object.

Required DLLs and Libraries

LTANN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Win32, x64.

See Also

Functions:

Class Members

Topics:

Annotation Functions: Creating and Deleting Annotations

 

Implementing Annotations

 

Displaying and Manipulating Annotation Objects

Example

This is an example for LAnnotation::Copy(hAnnSource):

L_INT LAnnotation_CopyFirstExample(LAnnotation& LeadAnnotation) 
{ 
   HANNOBJECT  hAnnObj ; 
   LAnnotation MyAnn ; 
   hAnnObj = LeadAnnotation.GetHandle() ; 
   MyAnn.Copy(hAnnObj) ; 
   // 
   return SUCCESS; 
} 
//This is an example for LAnnotation::Copy(LAnnSource): 
L_INT LAnnotation_CopySecondExample(LAnnotation& LeadAnnotation) 
{ 
   LAnnotation MyAnn ; 
   MyAnn.Copy(LeadAnnotation) ; 
   //... 
   return SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C++ Class Library Help