Table des matières
Console
Lorsque vous utilisez Actionaz cet objet écrit dans la console d'exécution. Lorsque vous utilisez ActExec il se comporte comme l'objet Stdio et écrit vers la sortie standard.
Fonctions
Écrit une ligne dans la console.
Syntaxe
Console.print(texte);
Arguments
- Texte - (string) le texte à écrire
Renvoie
- (object) cette Console
Exemple
Console.print("Bonjour tout le monde!");
[TODO:Translate]
println
Writes a line in the console. A new line character is automatically added.
Added in Actionaz 3.0.1.
Syntax
Console.println(text);
Arguments
- text - (string) the text to write
Returns
- (object) this Console
Example
Console.println("Hello World!");
printWarning
Syntaxe
Console.printWarning(text);
Arguments
- Texte - (string) le texte à écrire
Renvoie
- (object) cette Console
Exemple
Console.printWarning("Ceci est important!");
[TODO:Translate]
printlnWarning
Writes a line in the console using a warning icon. A new line character is automatically added.
Added in Actionaz 3.0.1.
Syntax
Console.printlnWarning(text);
Arguments
- text - (string) the text to write
Returns
- (object) this Console
Example
Console.printlnWarning("This is important!");
printError
Écrit une ligne dans la console en utilisant une icône d'erreur.
Syntaxe
Console.printError(texte);
Arguments
- Texte - (string) le texte à écrire
Renvoie
- (object) cette Console
Exemple
Console.printError("Ceci est critique!");
[TODO:Translate]
printlnError
Writes a line in the console using an error icon. A new line character is automatically added.
Added in Actionaz 3.0.1.
Syntax
Console.printlnError(text);
Arguments
- text - (string) the text to write
Returns
- (object) this Console
Example
Console.printlnError("This is critical!");
clear
Vide le contenu de la console. Ne fait rien lorsqu'exécuté par ActExec.
Ajouté dans Actionaz 3.9.0.
Syntax
Console.clear();
Returns
- (object) cette Console
Example
Console.clear();