Print
Writes data (macro console).
Print <Expression>[;|,<Expression>...]][;|,]
Parameters
<Expression>
|
The expression to be output and the character string (integer, double-precision, character string).
|
Return Value
None.
Description
Output the variables and character strings to the macro console.
When the <Expression> is delimited with commas, it is output delimited by tabs.
When the <Expression> is delimited with semicolons, it is output after what was output immediately before.
When the final semicolon (;) is deleted, the delimiter is attached and output.
The delimiter is that which is set in [SYS] -> [Communications] -> [Normal (ignored process)].
Example
Output the measurement results.
GetUnitData UnitNo-1,"CR",CR#
GetUnitData UnitNo-1,"X",X#
GetUnitData UnitNo-1,"Y",Y#
Print CR#;",";X#;",";Y#