deInheritMenus
deInheritMenus(
t_viewType
)
=> t / nil
Description
Causes t_viewType to inherit the menus defined by its parent class.
When this application is installed, the menu trigger of its parent (which can itself inherit menus) is called, after which the menu trigger associated with t_viewType is called and the results of the latter call are appended to that of the former to construct the banner menu list. If there is no parent type, or the inheritance cannot be done, nil is returned.
Arguments
Value Returned
Examples
Sets view type "graphic" to inherit the menus of its parent and returns t.
deInheritMenus( "graphic" )
Return to top