그리드 특정 컬럼의 meta_maxlength값을 반환하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nColumn | short | 컬럼의 인덱스 | 
| Type | Description | 
|---|---|
| short | 특정 컬럼에 meta_maxlenth값 | 
function btn_getgriddata_on_mouseup()
{
	// 그리드 1번째 인덱스 컬럼의 meta_maxlength값을 구한다.
	screen.alert("1번째컬럼 meta_maxlength : " + grid.getcolumnmetamax(1));
}