| 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 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")
# plotting the data should occur through Plot Data under
# the Display menu
createView(type = "spreadView", dataName = "USArrests")
# this will create an object of class, spreadView
is(get("viewList",viewEnv)[[1]],"spreadView")
}