멀티라인 그리드 특정 통계 컬럼의 너비를 가져오는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nSubRow | short | 서브 로우 인덱스 | 
| nColumn | short | 컬럼 인덱스 | 
| Type | Description | 
|---|---|
| short | 너비값 또는 -1 | 
오류 발생시 -1값을 리턴한다.
function btn_getcolumnwidth_on_mouseup()
{
	var nWidth = mgrdTest.getstatcolumnwidth(0,0);
	screen.alert("0번째컬럼에0번째서브로우의 넓이값 :"  + nWidth);
}