modulegui
mòdul gui
Instruccions:
1var gui = require('gui');
funció estàtica
setVersion
configurarWebViewLa versió simulada d'IE més alta del sistema. Quan la versió d'IE del sistema sigui inferior a aquesta, es simularà la versió d'instal·lació del sistema.
1static gui.setVersion(Integer ver);
Paràmetres de trucada:
- ver: Enter, especifiqueu la versió de simulació, és a dir
open
Obriu una finestra i visiteu l'URL especificat
1
2static WebView gui.open(String url,
Object opt = {});
Paràmetres de trucada:
- url: Es pot utilitzar String, l'URL especificatfs:pathAccedir al sistema de fitxers local
- opt: Objecte, paràmetres de la finestra oberta
Resultats de retorn:
- WebView, retorna l'objecte finestra oberta
S'admeten els paràmetres següents:
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
}
Quan s'estableix l'amplada i l'alçada, però no s'estableix l'esquerra o la dreta, la finestra es centrarà automàticament
Obre una finestra del navegador buida
1static WebView gui.open(Object opt = {});
Paràmetres de trucada:
- opt: Objecte, paràmetres de la finestra oberta
Resultats de retorn:
- WebView, retorna l'objecte finestra oberta
S'admeten els paràmetres següents:
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
}
Quan s'estableix l'amplada i l'alçada, però no s'estableix l'esquerra o la dreta, la finestra es centrarà automàticament
constant
IE7
WebViewés a dir, versió de simulació, especifiqueu ie7
1const gui.IE7 = 7000;
IE8
WebViewés a dir, versió de simulació, especifiqueu ie8
1const gui.IE8 = 8000;
IE9
WebViewés a dir, versió de simulació, especifiqueu ie9
1const gui.IE9 = 9000;
IE10
WebViewés a dir, versió de simulació, especifiqueu ie10
1const gui.IE10 = 10000;
IE11
WebViewés a dir, versió de simulació, especifiqueu ie11
1const gui.IE11 = 11000;
EDGE
WebViewés a dir, versió de simulació, especifiqueu la vora
1const gui.EDGE = 11001;