Type

리스트 유형 식별자를 가져옵니다.

virtual int  Type()

Return Value

목록 유형 식별자(CList - 7779용).

예제:

//--- CList::Type() 예제
#include <Arrays\List.mqh> 
//--- 
void OnStart() 
  { 
   CList *list=new CList; 
   //--- 
   if(list==NULL
     { 
      printf("객체가 오류를 생성합니다"); 
      return
     } 
   //--- 목록 유형 가져오기 
   int type=list.Type(); 
   //--- 리스트 삭제 
   delete list; 
  }