The R Project SVN R

Rev

Rev 25278 | Rev 28706 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25278 Rev 25323
Line 1... Line 1...
1
\name{grid.get}
1
\name{grid.get}
2
\alias{grid.get}
2
\alias{grid.get}
3
%- Also NEED an `\alias' for EACH other topic documented here.
-
 
4
\title{Get the Contents of a Grid Graphical Object}
3
\title{Get the Contents of a Grid Graphical Object}
5
\description{
4
\description{
6
  A Grid graphical object contains a list structure;  this
5
  A Grid graphical object contains a list structure;  this
7
  function returns that list structure.
6
  function returns that list structure.
8
}
7
}
9
\usage{
8
\usage{
10
grid.get(grob, ...)
9
grid.get(grob, ...)
11
}
10
}
12
%- maybe also `usage' for other objects documented here.
-
 
13
\arguments{
11
\arguments{
14
  \item{grob}{An object of class \code{"grob"}.}
12
  \item{grob}{An object of class \code{"grob"}.}
15
  \item{\dots}{Zero or more element-specifiers.  Each specifier
13
  \item{\dots}{Zero or more element-specifiers.  Each specifier
16
    may be a single character or numeric value.}
14
    may be a single character or numeric value.}
17
}
15
}
Line 32... Line 30...
32
}
30
}
33
\author{Paul Murrell}
31
\author{Paul Murrell}
34
\seealso{
32
\seealso{
35
  \code{\link{grid.grob}}.
33
  \code{\link{grid.grob}}.
36
}
34
}
37
 
-
 
38
\examples{
35
\examples{
39
xa <- grid.xaxis(draw=FALSE)
36
xa <- grid.xaxis(draw=FALSE)
40
grid.get(xa)
37
grid.get(xa)
41
grid.get(xa, "ticks")
38
grid.get(xa, "ticks")
42
 
39
 
43
temp <- grid.collection(axis=grid.xaxis(draw=FALSE), draw=FALSE)
40
temp <- grid.collection(axis=grid.xaxis(draw=FALSE), draw=FALSE)
44
grid.get(temp, "children", "axis", "ticks")
41
grid.get(temp, "children", "axis", "ticks")
45
}
42
}
46
\keyword{ dplot }%-- one or more ...
43
\keyword{dplot}