Type

Obtém o identificador do tipo do array.

virtual int  Type() const

Valor do Retorno

Tipo de ID da matriz (por CArrayLong - 84).

Exemplo

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