L_AnnGetItem

#include "l_bitmap.h"

L_LTANN_API L_INT L_AnnGetItem(hContainer, phItem)

Gets the handle to the first annotation object in the specified container.

Parameters

HANNOBJECT hContainer

Handle of the container object.

pHANNOBJECT phItem

Address of the HANNOBJECT variable to be updated with the objects handle. If the container does not have any objects, the updated value is NULL.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

You can use this function to see if a container is empty.

Before calling this function, you must declare a variable of data type HANNOBJECT. Then, pass the address of the variable in the phItem parameter. This function will update the variable with the handle of the first object in the container.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

This example deletes the object that is passed in, if it is an empty subcontainer.

L_INT AnnGetItemExample(HANNOBJECT hObject) 
{ 
   L_INT nRet; 
   L_UINT      ObjectType;       /* Type of annotation object */ 
   HANNOBJECT  hTestObject; 
   HANNOBJECT  hRootContainer;   /* Root container for the whole window */ 
 
   /* Get the root container */ 
   nRet = L_AnnGetTopContainer(hObject, &hRootContainer); 
   if(nRet != SUCCESS) 
      return nRet; 
   /* Do nothing if this is the root container */ 
   if (hObject == hRootContainer) 
      return 0; 
   /* See if this is a container */ 
   nRet = L_AnnGetType(hObject, &ObjectType); 
   if(nRet != SUCCESS) 
      return nRet; 
   /* Do nothing if it is not a container */ 
   if (ObjectType != ANNOBJECT_CONTAINER) 
      return 0; 
   /* See if there are any objects in the container */ 
   nRet = L_AnnGetItem(hObject, &hTestObject); 
   if(nRet != SUCCESS) 
      return nRet; 
   /* If there are none, delete the container */ 
   if (hTestObject == NULL) 
   { 
      nRet = L_AnnDestroy(hObject, 0); 
      if(nRet != SUCCESS) 
         return nRet; 
      MessageBox (NULL, TEXT("Deleted empty container"), TEXT("Notice"), MB_OK); 
   } 
   return SUCCESS; 
} 

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