Type
Gets the array type identifier.
virtual int Type() const
Return Value
Array type identifier (for CArrayLong - 84).
Example:
//--- example for CArrayLong::Type() #include <Arrays\ArrayLong.mqh> //--- void OnStart() { CArrayLong *array=new CArrayLong; //--- if(array==NULL) { printf("Object create error"); return; } //--- get array type int type=array.Type(); //--- delete array delete array; }