\name{grid.get} \alias{grid.get} \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) getGrob(gTree, gPath, strict = FALSE, grep = FALSE, global = FALSE) } \arguments{ \item{gTree}{A gTree object.} \item{gPath}{ A gPath object. For \code{grid.get} this specifyies a grob on the display list. For \code{getGrob} this specifies a descendant of the specified gTree. } \item{strict}{ A boolean indicating whether the gPath must be matched exactly. } \item{grep}{A boolean indicating whether the \code{gPath} should be treated as a regular expression. Values are recycled across elements of the \code{gPath} (e.g., \code{c(TRUE, FALSE)} means that every odd element of the \code{gPath} will be treated as a regular expression). } \item{global}{ A boolean indicating whether the function should affect just the first match of the \code{gPath}, or whether all matches should be affected. } \item{allDevices}{ A boolean indicating whether all open devices should be searched for matches, or just the current device. NOT YET IMPLEMENTED. } } \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}