#include "ltwrappr.h"
L_BOOL LToolbar::IsVisible()
Queries the visibility of the toolbar window.
Value | Meaning |
---|---|
TRUE | Visible. |
FALSE | Not visible. |
To change the visibility status of the toolbar, call LToolbar::SetVisible.
Required DLLs and Libraries
This function will toggle the toolbar visibility state.
L_INT LToolbar__IsVisibleExample(LToolbar* tlb)
{
L_INT nRet;
if ( tlb->IsValid () ) /* check the validity of the toolbar handle */
{
/* Get the visibility state of the toolbar */
if (tlb->IsVisible () )
{
/* Hid the toolbar */
nRet = tlb->SetVisible (FALSE ) ;
if(nRet != SUCCESS)
return nRet;
}
else
{
/* Show the toolbar */
nRet = tlb->SetVisible (TRUE ) ;
if(nRet != SUCCESS)
return nRet;
}
}
else
{
return FAILURE ;
}
return SUCCESS ;
}