The R Project SVN R

Rev

Rev 68948 | 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
68948 ripley 2
% Part of the R package, https://www.R-project.org
84934 hornik 3
% Copyright 1995-2023 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
}
84934 hornik 18
\usage{
19
.Device
20
.Devices
21
}
22
\details{
40611 ripley 23
  \code{.Device} is a length-one character vector.
24
 
25
  \code{.Devices} is a \link{pairlist} of length-one character vectors.
26
  The first entry is always \code{"null device"}, and there are as many
27
  entries as the maximal number of graphics devices which have been
28
  simultaneously active.  If a device has been removed, its entry will be
29
  \code{""} until the device number is reused.
65632 ripley 30
 
31
  Devices may add attributes to the character vector: for example
32
  devices which write to a file may record its path in attribute
33
  \code{"filepath"}.
40611 ripley 34
}
1349 maechler 35
\keyword{device}