The R Project SVN R

Rev

Rev 25278 | Rev 30912 | 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.pack}
1
\name{grid.pack}
2
\alias{grid.pack}
2
\alias{grid.pack}
3
%- Also NEED an `\alias' for EACH other topic documented here.
-
 
4
\title{ Pack an Object within a Frame }
3
\title{ Pack an Object within a Frame }
5
\description{
4
\description{
6
  This function, together with \code{grid.frame} is part of a
5
  This function, together with \code{grid.frame} is part of a
7
  GUI-builder-like interface to constructing graphical images.
6
  GUI-builder-like interface to constructing graphical images.
8
  The idea is that you create a frame with \code{grid.frame} then
7
  The idea is that you create a frame with \code{grid.frame} then
Line 13... Line 12...
13
          row=NULL, row.before=NULL, row.after=NULL,
12
          row=NULL, row.before=NULL, row.after=NULL,
14
          col=NULL, col.before=NULL, col.after=NULL,
13
          col=NULL, col.before=NULL, col.after=NULL,
15
          width=NULL, height=NULL,
14
          width=NULL, height=NULL,
16
          force.width=FALSE, force.height=FALSE, border=NULL)
15
          force.width=FALSE, force.height=FALSE, border=NULL)
17
}
16
}
18
%- maybe also `usage' for other objects documented here.
-
 
19
\arguments{
17
\arguments{
20
  \item{frame}{ An object of class \code{frame}, typically the output
18
  \item{frame}{ An object of class \code{frame}, typically the output
21
  from a call to \code{grid.frame}. }
19
  from a call to \code{grid.frame}. }
22
  \item{grob}{ An object of class \code{grob}.  The object to be
20
  \item{grob}{ An object of class \code{grob}.  The object to be
23
    packed. }
21
    packed. }
Line 66... Line 64...
66
}
64
}
67
\value{
65
\value{
68
  None.
66
  None.
69
}
67
}
70
\author{ Paul Murrell }
68
\author{ Paul Murrell }
-
 
69
\seealso{
71
\seealso{\code{\link{grid.frame}} }
70
  \code{\link{grid.frame}}
72
 
-
 
73
\examples{
-
 
74
}
71
}
75
\keyword{ dplot }%-- one or more ...
72
\keyword{dplot}
76
 
-