데이터셋중 해당하는 컬럼의 Description을 반환한다.
| Parameters | Type | Description |
|---|---|---|
| nColumn | short | 컬럼 Index |
| Type | Description |
|---|---|
| STRING | 컬럼 Description |
function btnColumnDesc()
{
var strColumnDesc = DS_RECORD.getcolumndesc(0);
screen.alert("컬럼Description : " + strColumnDesc);
}