#include "Ltwrappr.h"
L_INT LContainer::Reset ()
Erases the contents of the container from the screen.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function erases the contents of the container from the screen drawing, but it does not reset the actual container data.
Required DLLs and Libraries
This example will reset the container drawing contents.
L_INT LContainer_ResetExample(LContainer & lcont)
{
L_INT nRet;
nRet = lcont.IsValid ();
if ( nRet == SUCCESS ) /* check the validity of container handle */
{
/* Reset the container drawing on the screen (if any) */
nRet = lcont.Reset () ;
if(nRet != SUCCESS)
return nRet;
}
else
{
return nRet ;
}
return SUCCESS ;
}