lmgrQueryNamedObjects
lmgrQueryNamedObjects([t_menuName]) =>l_list/nil
Description
Returns a list containing the names of all menu items in the Library Manager menu named t_menuName.
If t_menuName is not specified, the names of all menus and menu items in the Library Manager are returned. The order in the list is arbitrary. The list will contain the names of any standard Library Manager objects as well as any objects which have been specified in the cdsLibMgr.il file.
Arguments
Value Returned
|
Either no Library Manager process is running or an error occurred in retrieving the information, for example, a nonexistent menu name was specified. |
Examples
Retrieves the menu items for the View menu.
lmgrQueryNamedObjects( "viewCascade" )
=>( "viewFilterButton" "viewSeparator1" "viewRefreshButton" )
Return to top