Learn R Programming

svGUI (version 1.0.1)

gui: A GUI object.

Description

The gui object contains and manages GUI-related data.

Usage

# S3 method for gui
$(gui, x)

# S3 method for gui print(x, ...)

is.gui(x)

Arguments

gui

A gui object..

x

An object or a function for $.

...

Further arguments (not used yet).

See Also

gui_add()

Examples

Run this code
# NOT RUN {
# Create a GUI
gui_add("myGUI")
is.gui(myGUI)
myGUI
# Put an object in the GUI environment (fake button)
myGUI$button <- "my_button"
# Retrieve it
myGUI$button
# Get the curent status of the GUI
myGUI$status
# Eliminate this GUI and all its objects
gui_remove("myGUI")
# }

Run the code above in your browser using DataLab