LAnnotation::CreateAnnObject
#include "ltwrappr.h"
static LAnnotation * LAnnotation::CreateAnnObject(hAnnObject)
HANNOBJECT hAnnObject; |
/* handle of the annotation object */ |
Creates an annotation class object of the specified type. You can use this static function to get a proper annotation class object that is compatible and of the same type as the passed annotation handle. This function is available in the Document/Medical Toolkits.
Parameter |
Description |
hAnnObject |
Handle of the annotation object. |
Returns
A pointer to the created annotation class object.
Comments
The passed annotation handle will be associated with the created annotation class object. You can get the type of the returned object by calling LAnnotation::GetType. Then you can cast the returned pointer to the correct type.
You are responsible for deleting the created 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. |
See Also
Example
For an example, refer to LAnnotation::CutToClipboard.