콤보박스 아이템을 전부 선택하면서 콤보박스에 on_itemchange 이벤트가 설정되어 있을 때 이벤트를 실행할지 여부와 실행 시 Async 여부를 설정할 수 있는 API이다.
| Parameters | Type | Description |
|---|---|---|
| bIncludeHidden | BOOL | [옵션] 숨김 아이템 포함 여부 (기본값: true) |
| bFireItemChangeEvent | BOOL | [옵션] on_itemchange 이벤트를 실행할지 여부 (기본값: true) |
| bProcEventAsync | BOOL | [옵션] 이벤트 실행시 Async로 실행할지 여부 (기본값: true) |
| Type | Description |
|---|---|
| BOOL | 성공 여부(true, false) |
function btn_setselectedall_on_mouseup()
{
cbTest.setselectedall();
}