Type

配列の型識別子を取得します。

virtual int  Type() const

戻り値

配列の型識別子(CArrayInt は 82)

例:

//--- CArrayInt::Type() の例
#include <Arrays\ArrayInt.mqh>
//---
void OnStart()
 {
  CArrayInt *array=new CArrayInt;
  //---
  if(array==NULL)
    {
    printf("Object create error");
    return;
    }
  //--- 配列の型を取得する
  int type=array.Type();
  //--- 配列を削除する
  delete array;
 }