Deletes the selected objects from the class object's container.
#include "Ltwrappr.h"
L_INT LRasterPaintWindow::Delete()
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
LRasterPaintWindow::Initialize must be called before calling this function.
L_INT LRasterPaintWindow_DeleteExample(LRasterPaintWindow * pLRasterPntWnd)
{
L_INT nRet = FAILURE ;
if ( pLRasterPntWnd->IsValid () )
nRet = pLRasterPntWnd->Delete();
else
return FAILURE;
return nRet;
}