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