Output.property=value
Description
The Output object is created automatically when you run an NS Basic/CE program and is the bottom most object. It is a PictureBox object, so you can use all the same properties, methods and events. In addition, output from the PRINT statement goes to Output.
When the Output object is closed using the Close box in the top right corner, a Output_close event is sent to your program. You may use this to do limited cleanup work.
Properties Supported (see "Properties")
Same as PictureBox.
Methods Supported (see "Methods")
Same as PictureBox.
Events Supported (see "Events")
Same as PictureBox, plus Output_Close, Output_Size
Example
REM Show close box action
SUB form_close
MSGBOX "The Output box is closing"
END SUB
Output
Related Items
ADDOBJECT, Events, Methods, Properties, PictureBox, KeyPreview