UpsPrs.ActionCorrection

ActionCorrection Dans (ActionCorrectionAjouter, ActionCorrectionAjouterEntier, ActionCorrectionAjouterReel, ActionCorrectionAjouterChaineGuillemets, ActionCorrectionAjouterChaineApostrophes, ActionCorrectionSupprimer, ActionCorrectionModifier);

Description

L'énuméré ActionCorrection spécifie la correction a apporter au fichier source lorsqu'une erreur de syntaxe dont la correction est décidable a été détectée. Cet énuméré est utilisé par le constructeur du type AnalyseurSyntaxique.

La signification des valeurs est la suivante :

Exemple

/****************************************************************/
Fonction CorrigerErreur(NomFichierSource : Caractere, NumeroLigne : Entier, NumeroColonne : Entier, Action : ActionCorrection, Taille : Entier, Libelle : Caractere) Retourner ActionEtapeReponse
/* Objet : Corrige une erreur en interactif. */
/****************************************************************/
Debut
...
Selon Action Faire Fin Selon
...
Fin Fonction

Principal
/*******/ Debut
Variable
/******/

Debut
...
MonAnalyseurSyntaxique("MonAnalyseurSyntaxique", Nul, CorrigerErreur);
...
Fin Principal

Traduction

---------