멀티라인그리드 » Api
  
getitempatternsymbol
  
Description
그리드 특정 아이템의 pattern_front_symbol 또는 pattern_rear_symbol 속성을 리턴하는 API이다.
  
  
Parameters
  
    
      | Parameters | 
      Type | 
      Description | 
    
  
  
        
    
        | nRow | 
        long | 
 	로우 인덱스 | 
      
    
    
        | nSubRow | 
        short | 
 	서브 로우 인덱스 | 
      
    
    
        | nColumn | 
        long | 
 	컬럼 인덱스 | 
      
    
    
        | nFrontRear | 
        short | 
 	심볼 구분 (0: Front, 1:Rear) | 
      
    
    
        | bColumnValue | 
        BOOL | 
 	 | 
      
  
  
Return Value
  
    
      | Type | 
      Description | 
    
  
  
    
      | STRING | 
      패턴 심볼 | 
    
  
Remark
bColumnValue 파라미터가 false이거나 지정이 되어 있지 않은 경우, 아이템에 속성이 지정되어 있지 않은 경우에는 null 값이 리턴된다.
  
 
  
Example
function btn_on_mouseup()
{
	grd.setitempatternsymbol(0, 1, 0, 0, "$");
	grd.setitempatternsymbol(0, 1, 0, 1, "%");
	
	factory.consoleprint(grd.getitempatternsymbol(0, 1, 0, 0));
	factory.consoleprint(grd.getitempatternsymbol(0, 1, 0, 1));
}
  
See Also
setitempatternsymbol
  
Viewer Ver.
9.1.1.1
  
Update Date
 20191118