|
Contents | Previous | Next | Subchapters |
| Syntax |
gettable(caption)
|
| See Also | addtable , getcells , setcells |
caption = "My Table"
geometry = [100, 100, 200, 120]
callback = "delwin(caption);"
data = seq(3) * seq(2)'
columnLabels = novalue
rowLabels = novalue
style = "normal"
addtable(caption, geometry, callback, ...
data, columnLabels, rowLabels, style)
O-Matrix will create a table window with two columns and three rows.
You can use the mouse to select a cells in the table and use the
keyboard to enter new values.
If you then enter
gettable(caption)
O-Matrix will print the values currently in the table
You can delete the table window from its caption bar
or by entering
delwin(caption);