hiHideToolbar
hiHideToolbar(
o_hiToolbar
[ g_detach ]
)
=> t / nil
Description
Hides a toolbar. If g_detach is set to t, this function removes the toolbar from the window.
Arguments
|
o_hiToolbar
|
Handle to the toolbar returned by hiCreateToolbar.
|
|
g_detach
|
Removes toolbar from the window. If set to nil or not specified, the toolbar is made invisible but is not removed from the window.
|
Values Returned
|
t
|
The toolbar is hidden or removed.
|
|
nil
|
There was an error.
|
Examples
Hides the toolbar.
hiHideToolbar( toolbar nil )
=>t
Related Topics
Toolbar Functions
hiShowToolbar
hiCreateToolbar
hiPlaceToolbar
hiInsertToolbar
hiSetToolbarObjName
hiSetActionChecked
Return to top