화면 » Api

eventlock

Description

화면의 이벤트를 실행시키지 않도록 할 수 있는 API이다.

Parameters

Parameters Type Description
bEventLock BOOL 이벤트를 정지시킬 지 여부(true, false)
bIncludeSub BOOL 서브 화면도 함께 정지시킬 지 여부(true, false)

Return Value

Type Description
void 없음

Remark

* 이벤트를 실행시키지 않도록 정지시켰으면 반드시 다시 풀어주어야 한다.

* ActiveX 컨트롤의 이벤트는 정지되지 않는다.

Example

function btn_eventlock_on mouseup() { screen.eventlock(true, true); // 이벤트 정지 screen.eventlock(false, true); //이벤트 풀기 }

Viewer Ver.

9.1.1.1

Update Date

20160922