Type

Obtiene el identificador de tipo del array.

virtual int  Type() const

Valor devuelto

Identificador de tipo del array (el de CArrayFloat es 87).

Ejemplo:

//--- ejemplo de CArrayFloat::Type()
#include <Arrays\ArrayFloat.mqh>
//---
void OnStart()
  {
   CArrayFloat *array=new CArrayFloat;
   //---
   if(array==NULL)
     {
      printf("Error en la creación del objeto");
      return;
     }
   //--- obtiene el tipo del array
   int type=array.Type();
   //--- borra el array
   delete array;
  }