Type

Obtém o identificador do tipo do array.

virtual int  Type() const

Valor do Retorno

Tipo da ID do array (para CArrayFloat - 87).

Exemplo

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