allow_minus 속성값을 반환하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nColumn | short | Column Index | 
| Type | Description | 
|---|---|
| BOOL | allow_minus 속성값 | 
function btnTest_on_mouseup()
{
	var bAllowMinus = grid.getcolumnallowminus(0);
	if(bAllowMinus == true) {
		screen.alert("0번째 컬럼 마이너스 허용");
	}
}