get.num.cmd {base} | R Documentation |
This command returns the R command associated to an item from the User's Menu.
get.num.cmd(menunum)
menunum |
the menu number characterizing the menu entry in the User's menu. If R finds this entry in the User's menu, then it will return the R command associated to it and the menu item. |
get.menu.cmd,add.menu.cmd
.
# we create 3 menus
add.menu.cmd("Menu1","ls()")
add.menu.cmd("Menu2","dir()")
add.menu.cmd("Menu3","library()")
# we get the second one
get.menu.cmd("Menu2")
# should have returned
# [1] "dir()" "Menu2"