Get values from dialog

DESCRIPTION:

Gets the current settings of the widgets being used in the current dialog.

Note: This function is deprecated. For more information, see .

USAGE:

dialog.getvalues(dialog, ids=<<see below>>) 

REQUIRED ARGUMENTS:

dialog
an object of class dialog, as returned by the dialog.create function.

OPTIONAL ARGUMENTS:

ids
an integer vector giving the widget ID numbers for the desired widgets. The widget ID numbers are indices in the values argument as supplied to the original dialog.create function call. The default is to get the current values for all of the widgets in the specified dialog.

VALUE:

Returns a list similar in structure to the values argument to the original dialog.create function call. This list describes the current values contained within the dialog.

DETAILS:

This function is called by dialog.display as part of its operation. Normal usage of displaying a dialog and waiting for an answer should be done with dialog.display .

SEE ALSO:

, ,

EXAMPLES:

# dialog.display(dialog1) would do something like this. 
dialog.popup (dialog1) 
button <- dialog.getbutton (dialog1) 
dialog.popdown (dialog1) 
values <- dialog.getvalues (dialog1)