Rev 42333 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/grid/man/grid.get.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{grid.get}\alias{grid.get}\alias{grid.gget}\alias{getGrob}\title{Get a Grid Graphical Object}\description{Retrieve a grob or a descendant of a grob.}\usage{grid.get(gPath, strict = FALSE, grep = FALSE, global = FALSE,allDevices = FALSE)grid.gget <- function(..., grep = TRUE, global = TRUE)getGrob(gTree, gPath, strict = FALSE, grep = FALSE, global = FALSE)}\arguments{\item{gTree}{A gTree object.}\item{gPath}{ A gPath object. For \code{grid.get} thisspecifyies a grob on the display list. For \code{getGrob} thisspecifies a descendant of the specified gTree. }\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{allDevices}{ A boolean indicating whether all open devicesshouldbe searched for matches, or just the current device.NOT YET IMPLEMENTED.}}\details{\code{grid.gget} (\code{g} for global) is just a convenience wrapper for\code{grid.get} with different defaults.}\value{A grob object.}\author{Paul Murrell}\seealso{\code{\link{grob}}, \code{\link{getGrob}},\code{\link{addGrob}}, \code{\link{removeGrob}}.}\examples{grid.xaxis(name="xa")grid.get("xa")grid.get(gPath("xa", "ticks"))grid.draw(gTree(name="gt", children=gList(xaxisGrob(name="axis"))))grid.get(gPath("gt", "axis", "ticks"))}\keyword{dplot}