HTML에디터의 editable 속성값을 반환하는 API이다.
Type | Description |
---|---|
BOOL | editable 속성(true, false) |
function btn_seteditable_on_mouseup(objInst)
{
if (htmleditor.geteditable()) {
htmleditor.seteditable(false);
}
else {
htmleditor.seteditable(true);
}
}