#include "ltaut.h"
L_LTAUT_API L_INT L_AutDelete(pAutomation, dwFlags)
Deletes the selected objects from the active automation container.
Pointer to an automation handle.
Reserved for future use. Must be 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Required DLLs and Libraries
This example shows how to do a delete operation on the current automation selection.
L_INT AutDeleteExample( pAUTOMATIONHANDLE pAutomation )
{
L_INT nRet;
nRet = L_AutIsValid ( pAutomation );
if ( SUCCESS == nRet ) /* check the validity of the automation handle */
{
/* delete the current selection */
L_AutDelete ( pAutomation, 0 ) ;
return SUCCESS ;
}
else
{
return nRet ;
}
}