Type

Ottiene l'identificatore tipo array.

virtual int  Type() const

Valore di ritorno

Identificatore tipo array (for CArrayChar - 77).

Esempio:

//--- esempio per ArrayChar::Type()
#include <Arrays\ArrayChar.mqh>
//---
void OnStart()
  {
   CArrayChar *array=new CArrayChar;
   //---
   if(array==NULL)
     {
      printf("Errore creazione oggetto");
      return;
     }
   //--- ottiene il tipo dell'array
   int type=array.Type();
   //--- elimina array
   delete array;
  }