The R Project SVN R

Rev

Rev 87493 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 87493 Rev 90298
Line 1... Line 1...
1
% File src/library/grDevices/man/dev.capabilities.Rd
1
% File src/library/grDevices/man/dev.capabilities.Rd
2
% Part of the R package, https://www.R-project.org
2
% Part of the R package, https://www.R-project.org
3
% Copyright 2008-12 R Core Team
3
% Copyright 2008-2026 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{dev.capabilities}
6
\name{dev.capabilities}
7
\alias{dev.capabilities}
7
\alias{dev.capabilities}
8
\title{Query Capabilities of the Current Graphics Device}
8
\title{Query Capabilities of the Current Graphics Device}
9
\description{
9
\description{
10
  Query the capabilities of the current graphics device.
10
  Query the capabilities of the current graphics device, such as
-
 
11
  transparency, event handling, rastering, clipping, masking, pattern
-
 
12
  filling, etc.
11
}
13
}
12
\usage{
14
\usage{
13
dev.capabilities(what = NULL)
15
dev.capabilities(what = NULL)
14
}
16
}
15
\arguments{
17
\arguments{
Line 56... Line 58...
56
    \code{c("LinearGradient", "RadialGradient", "TilingPattern")}
58
    \code{c("LinearGradient", "RadialGradient", "TilingPattern")}
57
    May also be \code{FALSE}.}
59
    May also be \code{FALSE}.}
58
  \item{clippingPaths}{logical:  Does the device support clipping
60
  \item{clippingPaths}{logical:  Does the device support clipping
59
    paths?}
61
    paths?}
60
  \item{masks}{character:  Does the device support masks?
62
  \item{masks}{character:  Does the device support masks?
61
    One or more of 
63
    One or more of
62
    \code{c("alpha", "luminance")}
64
    \code{c("alpha", "luminance")}
63
    May also be \code{FALSE}.}
65
    May also be \code{FALSE}.}
64
  \item{compositing}{character: Does the device support compositing
66
  \item{compositing}{character: Does the device support compositing
65
    operators?
67
    operators?
66
    There are many possible operators and devices may support any
68
    There are many possible operators and devices may support any
Line 76... Line 78...
76
}
78
}
77
\seealso{
79
\seealso{
78
  See \code{\link{getGraphicsEvent}} for details on interactive events.
80
  See \code{\link{getGraphicsEvent}} for details on interactive events.
79
}
81
}
80
\examples{
82
\examples{
81
dev.capabilities()
83
utils:: str( dev.capabilities() )
82
}
84
}
83
\keyword{ dplot }
85
\keyword{ dplot }