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: 
  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)

[Package gWidgets version 0.0-49 Index]