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", cont=gp) gseparator(horizontal=FALSE, cont=gp, expand=TRUE) glabel("right widget", cont=gp) ## End(Not run)