Type

Erhält die Array-Typ-Identifikator.

virtual int  Type() const

Rückgabewert

Identifikator vom Arraytyp (für CArrayInt - 82).

Beispiel:

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