TREE
Positionne une branche.
Support WebVue - Oui.
Syntaxe
TREE(Branch);
Type de retour : aucun
|
Argument |
Définition |
|
Branch |
Nom de la branche utilisé. Type STR. |
Exécution
L'instruction TREE est effective à l'intérieur d'une procédure jusqu'à la prochaine instruction TREE.
Exemple
SUB Main()
'Declare variables
DIM strBranche as Str;
DIM strTree as Str;
strBranche = "BRANCH01";
TREE (strBranch);
strTree = GETTREE();
PRINT("Branch: ",strTree);
propagationGetTree();
END SUB
SUB propagationGetTree()
DIM strTree as Str;
strTree = GETTREE();
PRINT("Branch: ",strTree);
END SUB