동적으로 필드의 버튼을 숨기거나 보이게 할 수 있는 API입니다.
Parameters | Type | Description |
---|---|---|
bHidden | BOOL | 콤보박스 버튼 숨김 여부 |
Type | Description |
---|---|
void | 없음 |
필드의 button_hidden 속성에서 설정한 것과 동일한 기능을 한다.
function btn_on_mouseup(objInst)
{
// 버튼 표시 토글 처리
fld.setbuttonhidden(!fld.getbuttonhidden());
}