HTML에디터의 편집가능 여부를 설정하는 API이다.
| Parameters | Type | Description |
|---|---|---|
| bEditable | bool | 편집가능 여부(true, false) |
| Type | Description |
|---|---|
| BOOL | 정상 처리 여부 |
function btn_seteditable_on_mouseup(objInst)
{
if (htmleditor.geteditable()) {
htmleditor.seteditable(false);
}
else {
htmleditor.seteditable(true);
}
}