그리드 특정 컬럼의 resizable 속성 활성화 여부를 반환하는 API이다.
| Parameters | Type | Description |
|---|---|---|
| nColumn | short | 컬럼 인덱스 |
| Type | Description |
|---|---|
| BOOL | resizable 속성 활성화 여부(true, false) |
function btn_getcolumnresizable_on_mouseup()
{
screen.alert("1번째 컬럼 resizable 여부 : " + grd.getcolumnresizable(1));
}