Difference between revisions of "API Debug.Print"
From Flowcode Help
Jump to navigationJump to search| Line 19: | Line 19: | ||
==Detailed description== | ==Detailed description== | ||
| − | + | This is a debug diagnostic call to allow text to easily be outputted during events to trace what a program is doing. | |
| + | During an event, breakpoints can not be used. Calls like this help establish if a flowcharts logic is sound. | ||
==Examples== | ==Examples== | ||
Revision as of 23:46, 3 June 2013
<sidebar>API contents</sidebar> Prints out the string or value on a line in the debug window
Contents
Parameters
STRING Output
- Text to display
Return value
This call does not return a value
Detailed description
This is a debug diagnostic call to allow text to easily be outputted during events to trace what a program is doing.
During an event, breakpoints can not be used. Calls like this help establish if a flowcharts logic is sound.
Examples
Calling in a calculation
- Add to a calculation icon:
::Debug.Print("output")
This example shows simple usage of both Print and PrintLn: