módulogui
módulo de interfaz gráfica de usuario
Instrucciones:
1var gui = require('gui');
función estática
setVersion
configuraciónWebViewLa versión simulada más alta de IE dentro del sistema. Cuando la versión de IE del sistema es inferior a esta versión, se simulará la versión de instalación del sistema.
1static gui.setVersion(Integer ver);
Parámetros de llamada:
- ver: Entero, especifique la versión de simulación, es decir.
open
Abra una ventana y visite la URL especificada
1
2static WebView gui.open(String url,
Object opt = {});
Parámetros de llamada:
- url: Se puede utilizar la cadena, la URL especificadafs:pathAcceder al sistema de archivos local
- opt: Objeto, abrir parámetros de ventana
Resultados de devolución:
- WebView, devuelve el objeto de ventana abierta
Se admiten los siguientes parámetros:
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
}
Cuando se configuran el ancho y el alto, pero no se configuran la izquierda o la derecha, la ventana se centrará automáticamente
Abrir una ventana vacía del navegador
1static WebView gui.open(Object opt = {});
Parámetros de llamada:
- opt: Objeto, abrir parámetros de ventana
Resultados de devolución:
- WebView, devuelve el objeto de ventana abierta
Se admiten los siguientes parámetros:
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
}
Cuando se configuran el ancho y el alto, pero no se configuran la izquierda o la derecha, la ventana se centrará automáticamente
constante
IE7
WebViewes decir, versión de simulación, especifique ie7
1const gui.IE7 = 7000;
IE8
WebViewes decir, versión de simulación, especifique ie8
1const gui.IE8 = 8000;
IE9
WebViewes decir, versión de simulación, especifique ie9
1const gui.IE9 = 9000;
IE10
WebViewes decir, versión de simulación, especifique ie10
1const gui.IE10 = 10000;
IE11
WebViewes decir, versión de simulación, especifique ie11
1const gui.IE11 = 11000;
EDGE
WebViewes decir, versión de simulación, especificar borde
1const gui.EDGE = 11001;