|
Contents | Previous | Next | Subchapters |
| Syntax |
gaddwin(caption, geometry, call back) |
| See Also | delwin , gplot , and gaddwin(caption, geometry, call back, style) |
| Menu Command | Graphics | Add Window |
clear
caption = "Test Plot"
geometry = [200, 100, 200, 100]
callback = "beep"
id = gaddwin(caption, geometry, callback)
gplot(seq(3), seq(3))
O-Matrix will create a graphic window and
plot a line in the window.
If you attempt to close the window using its caption bar,
O-Matrix will beep.
You can delete the window by entering the command
delwin(caption)
to which O-Matrix will respond
T