트리그리드 특정 컬럼에 설정된 places(소수점) 자릿수를 반환하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nColumn | long | 컬럼 인덱스 | 
| Type | Description | 
|---|---|
| short | 소수점 자릿수 | 
function btn_getcolumnplaces_on_mouseup()
{
	// 1번째 컬럼의 소수점 자릿수를 가져온다.
	screen.alert("트리그리드컬럼 places: " + treegrid.getcolumnplaces(1));
}