ProjectContext :: output - Write output to output area
The function writes a message to the area currently set to the output area.
output(text,true,true); // write text to output and display
output(text,true,false); // write text to output
output(text,false,true); // append text to output and display
output(text,false,false);// append text to output
output("",true,true); // display current output
output("",true,false); // clear output
Implementation details
- sString - String value
- bClear
- Clear output before appending new message
In order to clear the output area before appending new message text, true has to be passed. When passing false , the text will be appended to the messages visible in the output area.
- bFlush
- Flush output
The option forces to write the messages stored in the internal message area to the output area ( true ). In order to append the output text to the message area, only, without showing it in the output area, flush option can be passed as false .