Gets the current container object type.
#include "Ltwrappr.h"
L_INT LContainer::GetObjectType (pnObjectType)
Pointer to the variable to be updated with the current object type.
| Value | Meaning | 
|---|---|
| SUCCESS | The function was successful. | 
| < 1 | An error occurred. Refer to Return Codes. | 
L_INT LContainer_GetObjectTypeExample( LContainer &lCont ){L_INT nRet;nRet = lCont.IsValid ( );if ( nRet == SUCCESS ) /* check the validity of container handle */{CONTAINEROBJECTTYPE nObjectType;/* get the current container object */nRet = lCont.GetObjectType ( &nObjectType ) ;if(nRet != SUCCESS)return nRet;/* stick to line object */if ( CONTAINER_OBJECT_TYPE_LINE != nObjectType ){/* set the container object */nRet = lCont.SetObjectType ( CONTAINER_OBJECT_TYPE_LINE ) ;if(nRet != SUCCESS)return nRet;}}else{return nRet ;}return SUCCESS ;}