Type

그래픽 개체 유형 식별자를 반환합니다.

virtual int  Type() const

반환 값

Object type identifier (for example, OBJ_ARROW for CChartObjectArrow)

예제:

//--- CChartObjectArrow::Type 의 예  
#include <ChartObjects\ChartObjectsArrows.mqh>   
//---   
void OnStart()   
  {   
   CChartObjectArrow arrow;   
   //--- 화살표 유형 가져오기   
   int type=arrow.Type();   
  }