Type

Obtiene el identificador de tipo del array.

virtual int  Type() const

Valor devuelto

Identificador de tipo del array (el de CArrayShort es 82).

Ejemplo:

//--- ejemplo de CArrayShort::Type()
#include <Arrays\ArrayShort.mqh>
//---
void OnStart()
  {
   CArrayShort *array=new CArrayShort;
   //---
   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;
  }