UpsDbg.AfficherVariablesLocales

Procedure Habilitation AfficherVariablesLocales();

Description

La procédure AfficherVariablesLocales permet d'afficher les variables locales du contexte d'appel courant de la tâche sélectionnée.

Exemple

Variable
/******/
/****************************************************************/
Procedure P()
/* Objet : Procédure quelconque. */
/****************************************************************/
Variable
/******/
Debut
ALocal=10;
BLocal=11.22;
CLocal="coucou";
...
SelectionnerTache("Principal");
AfficherVariablesLocales();
/* Ecrit :
ALocal=10;
BLocal=11.22;
CLocal="coucou";
*/

...
AfficherVariablesGlobales();
/* Ecrit :
essai:
======
AGlobal=-10;
BGlobal=-11.22;
CGlobal="COUCOU";
*/

...
Fin Procedure

Principal()
/*******/
Debut
...
AGlobal=10;
BGlobal=11.22;
CGlobal="COUCOU";
P();
...
Fin Principal

Voir aussi

AfficherVariablesGlobales pour afficher les variables globales.

SelectionnerTache pour sélectionner une tâche.

Traduction

---------