Sets the active automation container.
#include "ltaut.h"
L_LTAUT_API L_INT L_AutSetActiveContainer(pAutomation, pContainer)
Pointer to an automation handle.
Pointer to the container handle that references the container to be activated.
| Value | Meaning |
|---|---|
| SUCCESS | The function was successful. |
| < 1 | An error occurred. Refer to Return Codes. |
The container being set must exist in the automation container list. To add a container to the automation container list, call L_AutAddContainer.
This example shows how to set the automation active container.
L_INT AutSetActiveContainerExample(pAUTOMATIONHANDLE pAutomation,pCONTAINERHANDLE pContainer){L_INT nRet;nRet = L_AutIsValid ( pAutomation );if ( SUCCESS == nRet ) /* check the validity of the automation handle */{nRet = L_ContainerIsValid ( pContainer );if ( SUCCESS == nRet ) /* check the validity of the container handle */{pCONTAINERHANDLE pActiveContainer ;/* get the current active container */nRet = L_AutGetActiveContainer ( pAutomation, &pActiveContainer ) ;if(nRet != SUCCESS)return nRet;if ( pContainer != pActiveContainer ) /* if the new container is not currently active */{/* set the new active container */nRet = L_AutSetActiveContainer ( pAutomation, pContainer ) ;if(nRet != SUCCESS)return nRet;}return SUCCESS ;}else{return nRet ;}}else{return nRet ;}}