modulegui
module interface graphique
Instructions:
1var gui = require('gui');
fonction statique
setVersion
installationWebViewLa version simulée la plus élevée d'IE dans le système. Lorsque la version du système IE est inférieure à cette version, la version d'installation du système sera simulée.
1static gui.setVersion(Integer ver);
Paramètres d'appel :
- ver: Entier, précisez la version de la simulation ie
open
Ouvrez une fenêtre et visitez l'URL spécifiée
1
2static WebView gui.open(String url,
Object opt = {});
Paramètres d'appel :
- url: La chaîne, l'URL spécifiée, peut être utiliséefs:pathAccéder au système de fichiers local
- opt: Objet, paramètres de la fenêtre ouverte
Résultats de retour :
- WebView, renvoie l'objet fenêtre ouverte
Les paramètres suivants sont pris en charge :
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
}
Lorsque la largeur et la hauteur sont définies, mais que la gauche ou la droite ne sont pas définies, la fenêtre sera automatiquement centrée
Ouvrir une fenêtre de navigateur vide
1static WebView gui.open(Object opt = {});
Paramètres d'appel :
- opt: Objet, paramètres de la fenêtre ouverte
Résultats de retour :
- WebView, renvoie l'objet fenêtre ouverte
Les paramètres suivants sont pris en charge :
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
}
Lorsque la largeur et la hauteur sont définies, mais que la gauche ou la droite ne sont pas définies, la fenêtre sera automatiquement centrée
constante
IE7
WebViewc'est-à-dire la version de simulation, spécifiez ie7
1const gui.IE7 = 7000;
IE8
WebViewc'est-à-dire la version de simulation, spécifiez ie8
1const gui.IE8 = 8000;
IE9
WebViewc'est-à-dire la version de simulation, spécifiez ie9
1const gui.IE9 = 9000;
IE10
WebViewc'est-à-dire la version de simulation, spécifiez ie10
1const gui.IE10 = 10000;
IE11
WebViewc'est-à-dire la version de simulation, spécifiez ie11
1const gui.IE11 = 11000;
EDGE
WebViewc'est-à-dire la version de simulation, spécifiez le bord
1const gui.EDGE = 11001;