When using Actionaz this object writes to the execution console. When using ActExec it behaves as the Stdio object and writes to the standard output.
Writes a line in the console.
Console.print(text);
Console.print("Hello World!");
Writes a line in the console. A new line character is automatically added.
Added in Actionaz 3.0.1.
Console.println(text);
Console.println("Hello World!");
Writes a line in the console using a warning icon.
Console.printWarning(text);
Console.printWarning("This is important!");
Writes a line in the console using a warning icon. A new line character is automatically added.
Added in Actionaz 3.0.1.
Console.printlnWarning(text);
Console.printlnWarning("This is important!");
Writes a line in the console using an error icon.
Console.printError(text);
Console.printError("This is critical!");
Writes a line in the console using an error icon. A new line character is automatically added.
Added in Actionaz 3.0.1.
Console.printlnError(text);
Console.printlnError("This is critical!");
Clears the content of the console. Does nothing when executed by ActExec.
Added in Actionaz 3.9.0.
Console.clear();
Console.clear();