LToolbar::Free

#include "ltwrappr.h"

L_INT LToolbar::Free ()

Frees the toolbar handle's internal information.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

When the toolbar handle is no longer needed, call this function to free it.

Required DLLs and Libraries

-LTTLB

See Also

Functions

Topics

Example

L_INT LToolbar__FreeExample(LToolbar* tlb) 
{ 
   L_INT nRet; 
 
   if ( tlb->IsValid () ) 
   { 
      nRet = tlb->Free () ; 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
   else 
   { 
      return FAILURE ; 
   } 
 
   return SUCCESS; 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Toolbar C++ Class Library Help