| grid.get {grid} | R Documentation | 
Retrieve a grob or a descendant of a grob.
grid.get(gPath, strict = FALSE, grep = FALSE, global = FALSE,
         allDevices = FALSE)
grid.gget(..., grep = TRUE, global = TRUE)
getGrob(gTree, gPath, strict = FALSE, grep = FALSE, global = FALSE) 
gTree | 
 A gTree object.  | 
gPath | 
  A gPath object. For   | 
strict | 
 A boolean indicating whether the gPath must be matched exactly.  | 
grep | 
 A boolean indicating whether the   | 
global | 
  A boolean indicating whether the function should affect
just the first match of the   | 
allDevices | 
 A boolean indicating whether all open devices should be searched for matches, or just the current device. NOT YET IMPLEMENTED.  | 
... | 
  Arguments that are passed to   | 
grid.gget (g for global) is just a convenience wrapper for
grid.get with different defaults.
A grob object.
Paul Murrell
grob, getGrob,
addGrob, removeGrob.
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"))