Insert decoration into dialog

DESCRIPTION:

Returns a value that can be used in the values argument of dialog.create to cause some form of graphical decoration to be inserted into the dialog being created.

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

USAGE:

dialog.decor(type="separator") 

OPTIONAL ARGUMENTS:

type
character string specifying which form of decoration to use. The only value currently supported is "separator".

VALUE:

returns an object denoting the type of decoration to create. This value is interpreted by the dialog.create function and the functions that it calls.

DETAILS:

The return value is a character string with a class of "dialog.decor" .

SEE ALSO:

EXAMPLES:

# Create dialog with a separator line between the two widgets. 
dialog1 <- dialog.create( 
   values=list(File="file.ps", dialog.decor("sep"), Command="lpr"))