GUI {wingui} | R Documentation |
This object is defined if using the Rgui interface on windows.
Available attributes are available through attributes of GUI
$Title
The title of the window.
$opacity
Percentage of the opacity of the window.
$transparency
Percentage of the transparency of the window, wrapper of opacity
$on.top
bollean of if the window is fixed on top.
$layered
bollean of if the window is considered layered.
$.pid
The process ID.
$.hwnd
The window handle.
GUI
An instance of WindowsGUI reference class.
This is a singleton class with instance GUI
.
The is a reference class building off the
windows API.
## Not run: GUI$Title GUI$Title <- "My Title" GUI$opacity <- 0.90 # set to 90% GUI$transparency # should now be 0.10 GUI$on.top <- T # Rgui will now always be on top ## End(Not run)