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