Frees the toolbar handle's internal information and destroys the toolbar object.
#include "Ltwrappr.h"
static L_INT LRasterPaintWindow::FreeToolbar(pLToolbar)
Pointer to an LToolbar class object.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
When the toolbar handle is no longer needed, this function should be called to free it.
L_INT LRasterPaintWindow_FreeToolbarExample(LToolbar * pLToolbar)
{
L_INT nRet;
// Free The toolbar
nRet = LRasterPaintWindow::FreeToolbar(pLToolbar);
if(nRet != SUCCESS)
return nRet;
// Free The Automation
nRet = LRasterPaintWindow::Free ();
if(nRet != SUCCESS)
return nRet;
return SUCCESS;
}