| Type | Description | 
|---|---|
| BOOL | 잠금 화면 표시 여부(true:잠금, false:잠금 해제) | 
function btn_getscreenprotect_on_mouseup(objInst)
{
    var is_protected = screen.getscreenprotect();
    if(is_protected == true) {
        factory.consoleprint("screen is protected");
    }
    else {
        factory.consoleprint("screen is not protected");
    }
}