LAnnContainer::GetGrouping

#include "ltwrappr.h"

virtual L_INT LAnnContainer::GetGrouping(pbAutoGroup)

Gets the grouping property of the objects within the specified container.

Parameters

L_BOOL *pbAutoGroup

Pointer to a variable to be updated with a value that indicates whether or not the objects within the specified container are grouped. Possible values are:

Value Meaning
TRUE All objects within the container are treated as a group.
FALSE Each object within the container can be selected and modified independently.

Returns

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

Comments

This function is valid only for container objects.

Each container contains a "grouping" property, which indicates whether the objects in the container should be treated as a group.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

// this example will toggle grouping for a particular sub-container. // the parameter for this function should be a sub-container

L_INT LAnnContainer_GetGroupingExample(LAnnContainer * plContainer)  
{ 
   L_INT nRet; 
   L_BOOL bGrouping;  
 
   nRet = plContainer->GetGrouping(&bGrouping);  
   if(nRet != SUCCESS) 
      return nRet; 
 
   nRet = plContainer->SetGrouping(!bGrouping, 0);  
   if(nRet != SUCCESS) 
      return nRet; 
 
   return SUCCESS; 
} 

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

LEADTOOLS Raster Imaging C++ Class Library Help