| gseparator {gWidgets} | R Documentation |
Simple widget to draw a line used clarify layout of widgets.
gseparator(horizontal = TRUE, container = NULL, ..., toolkit = guiToolkit())
horizontal |
If |
container |
Optional container to attach widget to |
... |
Ignored |
toolkit |
Which GUI toolkit to use |
## Not run:
w <- gwindow("separator example")
gp <- ggroup(container=w)
glabel("left widget", container=gp)
gseparator(horizontal=FALSE, container=gp, expand=TRUE)
glabel("right widget", container=gp)
## End(Not run)