전용브라우저 실행시 설정한 실행파라미터(xplus-param)의 파라미터 값을 가져오는 API이다.
Type | Description |
---|---|
STRING | 파라미터값 |
전용 브라우저 환경에서만 동작합니다.
function btn_Getparam_on_mouseup()
{
// xFrame5Browser.exe --xplus-param=testdata
var strParam = factory.xplusbrowserparam();
screen.alert("xplus-param : " + strParam); // testdata 출력
}