Skip to content

Output Functions

Ouput functions are designed to be used in the Formula Sandbox to assist with testing and debugging formulas. They are not supported in proper formula scripts.


output\print( )

output\print()
output\print(VALUE): NULL

Prints VALUE without a carriage return/line break.

Special function for use in the Formula Sandbox that is used to print out the value of a variable. This is only displayed output section of the Formula Sandbox.

Examples

output\print() Example
output\print('Hello ');
output\print('World');  // Combined these lines will print 'Hello World'


output\printLine( )

output\printLine()
output\printLine(VALUE): NULL

Prints VALUE with a carriage return/line break.

Special function for use in the Formula Sandbox that is used to print out the value of a variable. This is only displayed output section of the Formula Sandbox.

Examples

output\printLine() Example
output\printLine('Hello');  // Outputs: 'Hello' + CR/LF
output\printLine('World');  // Outputs: 'World' + CR/LF


See Also