Consoleoutput()
Turns on/off the output to the console and turns on/off pretty printed json output for the Console() function
Usage
BOOLEAN = Consoleoutput(
output,
pretty
)
Argument | Summary |
---|---|
output | boolean |
pretty | boolean. Defaults to false. Determines if console() should output pretty printed JSON. [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
Consoleoutput( output=?, pretty=? );
Supports passing parameters as a structure using ArgumentCollection:
Consoleoutput( ArgumentCollection={ output : ?, pretty : ? } );