gvarbrowser {gWidgets} | R Documentation |
A widget to browse the objects in the current global environment
gvarbrowser(handler = function(h, ...) { values = h$obj[] value = paste(values, collapse = "$") if (!is.null(action)) print(do.call(h$action, list(svalue(value)))) }, action = "summary", container = NULL, ..., toolkit = guiToolkit())
handler |
Handler for double click. Default is to call value of
action on the object |
action |
Passed to handler. |
container |
Optional container to attach widget to |
... |
ignored |
toolkit |
Which GUI toolkit to use |
There is an idle handler that updates the top-level components. However, changes are made below this, they will not be updated automatically. Rather, the user must close and expand that level.
## Not run: gvarbrowser(container=TRUE) ## End(Not run)