gframe {gWidgetsWWW2} | R Documentation |
Use svalue<-
to adjust the title
gframe(text = "", pos = 0, horizontal = TRUE, spacing = 2, use.scrollwindow = FALSE, container = NULL, ..., width = NULL, height = NULL, ext.args = NULL)
text |
label text |
pos |
position of label. Ignored? |
horizontal |
Boolean. Set to |
spacing |
Integer. Between child spacing. |
use.scrollwindow |
Boolean. Set to |
container |
A parent container. In gWidgetsWWW2 a
parent container is not optional (though it can be substituted
with the |
... |
Used to pass along argument to the parent container's
|
width |
width in pixels of component. Sizing in
gWidgetsWWW2 is sometimes necessary as the arguments
|
height |
height in pixels of the component. |
ext.args |
The contructors of gWidgetsWWW2 ultimately
call an Ext constructor. The options passed to the Ext constructor
may be added to or overridden by use of this argument. Values are
passed in as named list components and with values converted into JavaScript
objects by |
an GContainer
object
w <- gwindow() g <- gframe("Label", cont=w) b <- gbutton("insider frame", cont=g) svalue(g) <- "new label"