Type
Type
Gets the graphical object type ID.
virtual int Type() constReturn Value
Object type ID (0x8888 for CChartObject).
Example:
//--- example for CChartObject::Type
#include <ChartObjects\ChartObject.mqh>
//---
void OnStart()
{
CChartObject object;
//--- get object type
int type=object.Type();
}Last updated on