#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. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
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. |
Win32, x64.
Functions: |
|
Topics: |
|
|
|
|
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;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET