The R Project SVN R

Rev

Rev 56382 | Rev 68948 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/base/man/dev.Rd
2
% Part of the R package, http://www.R-project.org
59039 ripley 3
% Copyright 1995-2007 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
27444 ripley 6
\name{.Device}
56186 murdoch 7
\alias{.Device}
1334 paul 8
\alias{.Devices}
27444 ripley 9
\title{
40611 ripley 10
  Lists of Open/Active Graphics Devices
1334 paul 11
}
12
\description{
40611 ripley 13
  A pairlist of the names of open graphics devices is stored in
14
  \code{.Devices}. The name of the active device (see
15
  \code{\link{dev.cur}}) is stored in \code{.Device}.  Both are symbols
56382 murdoch 16
  and so appear in the base namespace.
1334 paul 17
}
40611 ripley 18
\value{
19
  \code{.Device} is a length-one character vector.
20
 
21
  \code{.Devices} is a \link{pairlist} of length-one character vectors.
22
  The first entry is always \code{"null device"}, and there are as many
23
  entries as the maximal number of graphics devices which have been
24
  simultaneously active.  If a device has been removed, its entry will be
25
  \code{""} until the device number is reused.
26
}
1349 maechler 27
\keyword{device}