모듈 GUI
GUI 모듈
지침:
1var gui = require('gui');
정적 함수
setVersion
설정WebView시스템 내 IE의 가장 높은 시뮬레이션 버전입니다. 시스템 IE 버전이 이 버전보다 낮은 경우 시스템 설치 버전이 시뮬레이션됩니다.
1static gui.setVersion(Integer ver);
호출 매개변수:
- ver: 정수, 즉 시뮬레이션 버전을 지정합니다.
open
창을 열고 지정된 URL을 방문하십시오.
1
2static WebView gui.open(String url,
Object opt = {});
호출 매개변수:
결과 반환:
- WebView, 열린 창 객체를 반환합니다.
다음 매개변수가 지원됩니다.
1
2
3
4
5
6
7
8
9
10
11
12{
"left": 100, // specify the left position of the window, default is system auto set
"right": 100, // spcify the top position of the window, default is system auto set
"width": 100, // specify the width of the window, default is system auto set
"height": 100, // specify the height of the window, default is system auto set
"border": true, // specify whether the window has border, default is true
"caption": true, // specify whether the window has caption, default is true
"resizable": true, // specify whether the window is resizable, default is true
"maximize": false, // specify whether the window is maximized, default is false
"fullscreen": false, // specify whether the window is fullscreen, default is false
"debug": true, // specify whether the WebView output error and console info, default is true
}
너비와 높이를 설정하고 왼쪽이나 오른쪽을 설정하지 않은 경우 창이 자동으로 중앙에 배치됩니다.
빈 브라우저 창을 엽니다
1static WebView gui.open(Object opt = {});
호출 매개변수:
- opt: 객체, 열린 창 매개변수
결과 반환:
- WebView, 열린 창 객체를 반환합니다.
다음 매개변수가 지원됩니다.
1
2
3
4
5
6
7
8
9
10
11
12{
"left": 100, // specify the left position of the window, default is system auto set
"right": 100, // spcify the top position of the window, default is system auto set
"width": 100, // specify the width of the window, default is system auto set
"height": 100, // specify the height of the window, default is system auto set
"border": true, // specify whether the window has border, default is true
"caption": true, // specify whether the window has caption, default is true
"resizable": true, // specify whether the window is resizable, default is true
"maximize": false, // specify whether the window is maximized, default is false
"fullscreen": false, // specify whether the window is fullscreen, default is false
"debug": true, // specify whether the WebView output error and console info, default is true
}
너비와 높이를 설정하고 왼쪽이나 오른쪽을 설정하지 않은 경우 창이 자동으로 중앙에 배치됩니다.
끊임없는
IE7
WebView즉, 시뮬레이션 버전인 경우 ie7을 지정하세요.
1const gui.IE7 = 7000;
IE8
WebView즉, 시뮬레이션 버전인 경우 ie8을 지정하세요.
1const gui.IE8 = 8000;
IE9
WebView즉, 시뮬레이션 버전인 경우 ie9를 지정하세요.
1const gui.IE9 = 9000;
IE10
WebView즉, 시뮬레이션 버전인 경우 ie10을 지정하세요.
1const gui.IE10 = 10000;
IE11
WebView즉, 시뮬레이션 버전인 경우 ie11을 지정하세요.
1const gui.IE11 = 11000;
EDGE
WebView즉, 시뮬레이션 버전, 가장자리 지정
1const gui.EDGE = 11001;