This help topic is for R version 1.5.0. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/base/html/get.menu.cmd.html
get.menu.cmd {base}R Documentation

Returns the command associated to a user menu item from the User's menu

Description

This command returns the R command associated to an item from the User's Menu.

Usage

get.menu.cmd(label)

Arguments

label

the string 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 corresponding menu number. The matching is not case sensitive.

See Also

add.menu.cmd,del.menu.cmd,get.num.cmd.

Examples

# we create 3 menus
add.menu.cmd("Menu1","ls()")
add.menu.cmd("Menu2","dir()")
add.menu.cmd("Menu3","library()")

# we get the second menu item and command
get.menu.cmd("Menu2")
# should have returned
# dir() 
#    2 

[Package base version 1.5.0 ]