Programmer Guide/Command Reference/WRITELOG: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
;See also: | ;See also: | ||
[[Programmer Guide/ | [[Programmer Guide/Macro_Library/CONLOG|macro <code>ConLog</code>]], | ||
[[Programmer Guide/ | [[Programmer Guide/Macro_Library/BUTIL#MsgBox|macro <code>BUtil MsgBox</code>]], | ||
[[Programmer_Guide/Macro_Library/UM|macros <code>UM</code> and <code>EM</code>]] | [[Programmer_Guide/Macro_Library/UM|macros <code>UM</code> and <code>EM</code>]] |
Revision as of 16:29, 1 February 2016
This command writes a line of text to the Log-window.
WRITELOG text [/Newline … /Newline] [/Clear]
- Write text to the Log-window.
WRITELOG format args /Format [/Newline … /Newline] [/Clear]
- Write a formatted text composed by the specified format string format and the arguments args.
- Options
-
/Format
: mandatory option to write formatted text/Clear
: clear the Log-window before writing text/Newline
: each /N adds an empty line after the written text
- Note
- The output starts always at the begin of the next line. Its not possible to overwrite lines or to append text to the last line.
- See also