Type
Type
Gets the array type identifier.
virtual int Type() constReturn Value
Array type identifier (for CArrayString - 89).
Example:
//--- example for CArrayString::Type()
#include <Arrays\ArrayString.mqh>
//---
void OnStart()
{
CArrayString *array=new CArrayString;
//---
if(array==NULL)
{
printf("Object create error");
return;
}
//--- get array type
int type=array.Type();
//--- delete array
delete array;
}Last updated on