Determine whether a menu group is loaded.
This function checks to see if a menu group is loaded. The name argument specifies the name of the menu group. When name matches the name of a loaded menu group, the menugroup function returns the group's name; otherwise, it returns nil.
Examples
Code | Returns |
---|---|
(menugroup "view") | "view" |
(menugroup "junk") | nil |
Tell me about...