탭 » Api
  
settabitemareamargin
  
Description
탭 아이템 영역 좌측 우측 마진을 설정하는 API이다.
  
  
Parameters
  
    
      | Parameters | 
      Type | 
      Description | 
    
  
  
        
    
        | nLeftMargin | 
        long | 
 	탭아이템 에어리어 좌측 마진 | 
      
    
    
        | nRightMargin | 
        long | 
 	탭아이템 에어리어 우측 마진 | 
      
  
  
Return Value
  
    
      | Type | 
      Description | 
    
  
  
    
      | BOOL | 
      정상 적용 여부(true, false) | 
    
  
Remark
* -1을 입력하면 해당 마진은 변경되지 않는다.
  
 
  
Example
function btn_settabitemareamargin_on_mouseup(objInst)
{
    // 왼쪽마진 20pixel, 오른쪽마진 없음
	instTab.settabitemareamargin(20, 0);
	// 왼쪽마진은 변경하지 않음, 오른쪽마진 20pixel
	instTab.settabitemareamargin(-1, 20);
}
  
See Also
gettabitemareamargin
  
Viewer Ver.
9.1.1.1
  
Update Date
 20210616