deManageToolbar
deManageToolbar(
w_sessionWindow
o_toolbar
[ g_appName ]
)
=> t / nil
Description
Puts the toolbar handle on the given session window (under DE management) for the specified application. A managed toolbar is displayed as a menu item in Window–Toolbars and in the context menu of the session window.
Arguments
|
w_sessionWindow
|
Specifies the ID of the session window in which you want to put the given toolbar.
|
|
o_toolbar
|
Specifies a handle of the toolbar that is to be put on the given session window (under DE management).
|
|
g_appName
|
Specifies the application name in which the toolbar needs to be put. If no appName is given, the application running in the active-tab-window is used.
|
Value Returned
|
t
|
Returns t if the specified toolbar is successfully put under DE management.
|
|
nil
|
Returns nil if the specified toolbar is not put under DE management.
|
Examples
(deManageToolbar (swindow 2) 'schFileToolbar_2 (hiGetAppType (window 3)))
=>t
Return to top