Type

그래픽 개체 유형 ID 가져오기.

virtual int  Type() const

값 반환

Object type ID (0x8888 for CChartObject).

예시:

//--- CChartObject::Type 예시  
#include <ChartObjects\ChartObject.mqh>   
//---   
void OnStart()   
  {   
   CChartObject object;
   //--- 개체 유형 가져오기   
   int type=object.Type();   
  }