HTML에디터의 메뉴바 표시 여부를 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| bShow | BOOL | 표시 여부(true, false) | 
| Type | Description | 
|---|---|
| BOOL | 정상 처리 여부 | 
function btn_setmenubarshow_on_mouseup(objInst)
{
	if (htmleditor.getmenubarshow()) {
		htmleditor.setmenubarshow(false);
	}
	else {
		htmleditor.setmenubarshow(true);
	}
}