Rev 68948 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/grid/man/grid.add.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2007 R Core Team% Distributed under GPL 2 or later\name{grid.add}\alias{grid.add}\alias{addGrob}\alias{setChildren}\title{Add a Grid Graphical Object}\description{Add a grob to a gTree or a descendant of a gTree.}\usage{grid.add(gPath, child, strict = FALSE, grep = FALSE,global = FALSE, allDevices = FALSE, redraw = TRUE)addGrob(gTree, child, gPath = NULL, strict = FALSE, grep = FALSE,global = FALSE, warn = TRUE)setChildren(x, children)}\arguments{\item{gTree, x}{A gTree object.}\item{gPath}{ A gPath object. For \code{grid.add} thisspecifies a gTree on the display list. For \code{addGrob} thisspecifies a descendant of the specified gTree. }\item{child}{ A grob object. }\item{children}{ A gList object. }\item{strict}{ A boolean indicating whether the gPath must bematched exactly. }\item{grep}{A boolean indicating whether the \code{gPath} shouldbe treated as a regular expression. Values are recycled acrosselements of the \code{gPath} (e.g., \code{c(TRUE, FALSE)} meansthat every odd element of the \code{gPath} will be treated asa regular expression).}\item{global}{ A boolean indicating whether the function should affectjust the first match of the \code{gPath}, or whether all matchesshould be affected.}\item{warn}{A logical to indicate whether failing to find thespecified gPath should trigger an error. }\item{allDevices}{ A boolean indicating whether all open devicesshouldbe searched for matches, or just the current device.NOT YET IMPLEMENTED.}\item{redraw}{A logical value to indicate whether to redraw the grob. }}\details{\code{addGrob} copies the specified grob and returns a modifiedgrob.\code{grid.add} destructively modifies a grob on the display list.If \code{redraw}is \code{TRUE} it then redraws everything to reflect the change.\code{setChildren} is a basic function for setting all childrenof a gTree at once (instead of repeated calls to \code{addGrob}).}\value{\code{addGrob} returns a grob object; \code{grid.add} returns \code{NULL}.}\author{Paul Murrell}\seealso{\code{\link{grob}}, \code{\link{getGrob}},\code{\link{addGrob}}, \code{\link{removeGrob}}.}\keyword{dplot}