gseparator {gWidgets}R Documentation

Widget to draw separator line

Description

Simple widget to draw a line used clarify layout of widgets.

Usage

gseparator(horizontal = TRUE, container = NULL, ..., toolkit = guiToolkit())

Arguments

horizontal If TRUE line is horizontal, otherwise vertical.
container Optional container to attach widget to
... Ignored
toolkit Which GUI toolkit to use

Examples

## Not run: 
  group = ggroup(container=TRUE)
  add(group, glabel("left widget"))
  add(group, gseparator(horizontal=FALSE))
  add(group, glabel("right widget"))
## End(Not run)

[Package gWidgets version 0.0-25 Index]