BF_FieldGet : retourne les informations d'un champ

Prototype :
BF_STRUCT_FIELD BF_FieldGet (
      const string sBFTable,
      const string sBFField);


sBFTable
Nom interne de la table.
Ne doit pas être vide.
Ne doit pas contenir de caractère "."
La table doit être ouverte.

sBFFieldName
Nom du champ.
Ne doit pas être vide.
Le champ doit exister.

Valeur de retour
Une structure de champ.
En cas d'erreur, la structure est vide.

Exemples
BF_STRUCT_FIELD stMonchamp;
stMonchamp = BF_FieldGet ("Matable1", "MomChamp1");
if (stMonchamp.sInterFieldType != "")
{.......}