필드의 편집가능 여부를 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| bEditable | bool | 편집가능 여부(true, false) | 
| Type | Description | 
|---|---|
| void | 없음 | 
**필드의 editable 속성에서 설정한 것과 동일한 기능을 한다.
function btnseteditable_on_mouseup()
{
	// 필드의 편집 불가상태로 설정
    fld.seteditable(false);      
}