|
Contents | Previous | Next | Subchapters |
| Syntax |
geteditor(caption)
|
| See Also | addeditor |
clear
#
data = fill(" ", 1, 0)
caption = "Example: geteditor"
geometry = [100, 100, 400, 400]
callback = "Done"
addeditor(caption, geometry, callback, data)
#
function Done() begin
global caption
data = geteditor(caption)
write("screen", data)
delwin(caption);
end