Type

Obtém o identificador do tipo do array.

virtual int  Type() const

Valor do Retorno

Tipo da ID do array (por CArrayChar - 77).

Exemplo

//--- example for CArrayChar::Type()
#include <Arrays\ArrayChar.mqh>
//---
void OnStart()
  {
   CArrayChar *array=new CArrayChar;
   //---
   if(array==NULL)
     {
      printf("Object create error");
      return;
     }
   //--- get array type
   int type=array.Type();
   //--- delete array
   delete array;
  }