xFrame5 전용브라우저의 화면 캡쳐 가능 여부를 지정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| bEnableCapture | BOOL | 화면 캡쳐 가능 여부 | 
| Type | Description | 
|---|---|
| BOOL | 정상처리 여부 | 
전용 브라우저 환경에서만 동작합니다.
function btn_test_on_mouseup(objInst)
{
	// xFrame5 전용브라우저 캡쳐방지
	factory.xplussetscreencapture(false);
}
function btn_test2_on_mouseup(objInst)
{
	// xFrame5 전용브라우저 캡쳐방지 해제
	factory.xplussetscreencapture(true);
}