spreadView-class {iSPlot} | R Documentation |
spreadView is a class to represent a view that is a spreadsheet. spreadView inherits from the virtual class, genView.
Objects can be created by calls of the form new("spreadView", ...)
.
clist
:"GtkCList"
, i.e. the spreadsheet dataName
:win
:"GtkWindow"
that holds the view winNum
:
Class "genView"
, directly.
clist
slot Elizabeth Whalen
genView-class
,
plotView-class
,
sPlotView-class
,
gUpdateDataMessage-class
if (interactive()) { createControlWindow() # should load data through Open Data or Open File under the File menu data(USArrests) loadDFData(USArrests, "USArrests") # viewing the data should occur through View Data under # the Display menu vMessage<-new("gAddViewMessage", dataName="USArrests", type="spreadView") handleMessage(vMessage) # this will create an object of class, spreadView is(getViewEnvVar("viewList")[[1]], "spreadView") }