컬럼의 엑셀 저장여부를 가져오는 API이다.
| Parameters | Type | Description |
|---|---|---|
| nSubRow | short | 서브 로우 인덱스 |
| nColumn | short | 컬럼 인덱스 |
| Type | Description |
|---|---|
| BOOL | 엑셀 저장 여부(true, false) |
function btn_getcolumnexcelrw_on_mouseup()
{
bcheck = mgrd.getcolumnexcelrw(0,0);
screen.alert("0번째컬럼에0번째서브로우의 엑셀저장여부 :" + bcheck);
}