멀티라인그리드 » Api
getcolumncomboeditable
Description
그리드 특정 컬럼의 input_type이 combobox일 때 combobox_editable 속성을 읽어들이는 API이다.
Parameters
Parameters |
Type |
Description |
nSubrow |
short |
서브 로우 인덱스 |
nCol |
long |
컬럼 인덱스 |
Return Value
Type |
Description |
BOOL |
콤보박스 editable 여부(true, false) |
Example
function btn_on_mouseup()
{
// 0번째 서브로우, 0번째 컬럼이 콤보박스일때 combobox_editable속성을 끈다.
if(grid.getcolumncomboeditable(0, 0) == true) {
grid.setcolumncomboeditable(0, 0, false);
}
}
See Also
setcolumncomboeditable
Viewer Ver.
9.1.1.1
Update Date
20190522