ANNENUMHANDLECALLBACK

#include "l_bitmap.h"

L_INT pEXT_CALLBACK YourFunction(hObject, pHandleInfo, pUserData)

Processes each annotation object from the L_AnnEnumerateHandles function.

Parameters

HANNOBJECT hObject

Handle of the annotation object being processed.

pANNHANDLEINFO pHandleInfo

Pointer to structure that contains information about the annotation object handle.

L_VOID *pUserData

Void pointer that you can use to access a variable or structure containing data that your callback function needs. This gives you a way to receive data indirectly from the function that uses this callback function. This is the same pointer that you pass in the pUserData parameter of the L_AnnEnumerateHandles function. Keep in mind that this is a void pointer, which must be cast to the appropriate data type within your callback function.

Returns

Value Meaning
SUCCESS_CHANGE [1] Change the object.
SUCCESS_NOCHANGE [2] Do not change the object.

Comments

The L_AnnEnumerateHandles function calls your callback function for each handle of a single annotation object.

The pHandleInfo structure can be used to obtain detailed information about an annotation object handle. It can also be used to change some (but not all) of the properties of a user handle. All properties of an annotation object handle can be changed EXCEPT the location. The properties of a node that can be changed with this function are:

To change the location of a user-defined node, use L_AnnChangeUserHandle.

To change the properties of an annotation object handle, set the corresponding field in the pHandleInfo structure, and return SUCCESS_CHANGED. To leave the handle properties unchanged, return SUCCESS_UNCHANGED.

For more information, refer to the documentation for ANNHANDLEINFO.

Required DLLs and Libraries

Example

For an example, refer to L_AnnEnumerateHandles.

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help