LRasterPaintWindow::FreeToolbar
#include "Ltwrappr.h"
L_INT LRasterPaintWindow::FreeToolbar(pLToolbar)
| LToolbar * pLToolbar; | /* pointer to an LToolbar class object*/ | 
Frees the toolbar handle's internal information and destroys the toolbar object.
| Parameter | Description | 
| pLToolbar | Pointer to an LToolbar class object. | 
Returns
| SUCCESS | The function was successful. | 
| < 1 | An error occurred. Refer to Return Codes. | 
Comments
When the toolbar handle is no longer needed, this function should be called to free it.
Required DLLs and Libraries
| LTPNT For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application | 
See Also
| Functions: | LRasterPaintWindow::Initialize, LRasterPaintWindow::CreateToolbar, Class Members | 
Example
L_VOID MyFunction(LToolbar * pLToolbar)
{
   // Free The toolbar
   LRasterPaintWindow::FreeToolbar(pLToolbar);
   // Free The Automation
   LRasterPaintWindow::Free ();
}