그리드 컬럼의 combobox_excelstyle 속성값을 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
nColumn | long | 컬럼 인덱스 |
Type | Description |
---|---|
short | combobox_excelstyle 속성값 |
** 반환 되는 값 0 : display text 1 : code only 2 : code + comment 3 : comment only
function btnTest_on_mouseup(objInst)
{
// combobox_excelstyle값이 displaytext가 아닌경우
if(grid.getcolumncbexcelstyle(0) != 0) {
// combobox_excelstyle값을 displaytext로 변경
grid.setcolumncbexcelstyle(0, 0)
}
}