GETPROJECTDIR

Icône du lien vers le conceptVoir également

Renvoie le chemin du projet courant.

Support WebVue - Oui.

Syntaxe

StrVal = GETPROJECTDIR();

Type de retour : STR

Exécution

Le chemin d'accès au projet courant est retourné.

Exemple

SUB Main()

'Declare variables

DIM strPath as Str;

 

strPath = GETPROJECTDIR();

PRINT("The project path is: ",strPath);

END SUB