GETTREE

Icône du lien vers le conceptVoir également

Fournit la branche courante.

Support WebVue - Oui.

Syntaxe

StrVal = GETTREE();

Type de retour : STR

Exécution

La branche courante utilisée est celle passée en argument à la fonction appelée.

'A function that can only be used after TREE

SUB Main()

'Declare variables

DIM strBranch as Str;

DIM strTree as Str;

 

strBranche = "BRANCHE01";

TREE (strBranch);

strTree = GETTREE();

PRINT("The branch is: ",strTree);

propagationGetTree();

END SUB

 

SUB propagationGetTree()

DIM strTree as Str;

 

strTree = GETTREE();

PRINT("The branch is: ",strTree);

END SUB