메인 화면의 인스턴스를 가져오는 API이다.
| Type | Description | 
|---|---|
| INSTANCE | 메인 화면 인스턴스 | 
* 뷰어로만 확인 가능하다.
function btn_getmainsrcInstance_on_mouseup()
{
	var instMainscr = factory.getmainscrinstance();
	if(instMainscr != null){
		instMainscr.messagebox("테스트", "", XFD_MB_INFORMATION, XFD_MB_OK);
	} else {
		screen.alert("메인 화면 인스턴스를 가져오지 못했습니다.");
	}
}