AccountInfoString

Rend la valeur de la propriété correspondante du compte.

string  AccountInfoString(
   ENUM_ACCOUNT_INFO_STRING  property_id      // identificateur de la propriété
   );

Paramètres

property_id

[in]  L'identificateur de la propriété. La valeur peut être une des valeurs ENUM_ACCOUNT_INFO_STRING.

La valeur rendue

La valeur du type string.

Exemple:

void OnStart()
  {
//--- montrons toute l'information accessible de la fonction AccountInfoString()
   Print("Nom du courtier = ",AccountInfoString(ACCOUNT_COMPANY));
   Print("Devise du dépôt = ",AccountInfoString(ACCOUNT_CURRENCY));
   Print("Nom du client = ",AccountInfoString(ACCOUNT_NAME));
   Print("Nom de serveur commercial = ",AccountInfoString(ACCOUNT_SERVER));
  }

Voir aussi

Information sur le compte