그리드 컬럼의 combobox_excelstyle 속성값을 동적으로 변경 할 수 있는 API이다.
Parameters | Type | Description |
---|---|---|
nColumn | long | 컬럼 인덱스 |
nExcelStyle | short | combobox_excelstyle 속성값 |
Type | Description |
---|---|
void | 없음 |
** 파라미터 nExcelStyle 에 설정 가능한 값 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)
}
}