Type

Obtiene el identificador de tipo del array.

virtual int  Type() const

Valor devuelto

Identificador de tipo del array (para CArrayChar, 77).

Ejemplo:

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