modulegui
gui-module
Instructies:
1var gui = require('gui');
statische functie
setVersion
opgerichtWebViewDe hoogste gesimuleerde versie van IE binnen het systeem. Wanneer de IE-versie van het systeem lager is dan deze versie, wordt de versie van de systeeminstallatie gesimuleerd.
1static gui.setVersion(Integer ver);
Oproepparameters:
- ver: Geheel getal, specificeer de ie-simulatieversie
open
Open een venster en bezoek de opgegeven URL
1
2static WebView gui.open(String url,
Object opt = {});
Oproepparameters:
- url: String, de opgegeven URL, kan worden gebruiktfs:pathToegang tot het lokale bestandssysteem
- opt: Object, open vensterparameters
Resultaten retourneren:
- WebView, retourneert het open vensterobject
De volgende parameters worden ondersteund:
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
}
Wanneer breedte en hoogte zijn ingesteld, maar links of rechts niet, wordt het venster automatisch gecentreerd
Open een leeg browservenster
1static WebView gui.open(Object opt = {});
Oproepparameters:
- opt: Object, open vensterparameters
Resultaten retourneren:
- WebView, retourneert het open vensterobject
De volgende parameters worden ondersteund:
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
}
Wanneer breedte en hoogte zijn ingesteld, maar links of rechts niet, wordt het venster automatisch gecentreerd
constante
IE7
WebViewdwz simulatieversie, specificeer ie7
1const gui.IE7 = 7000;
IE8
WebViewdwz simulatieversie, specificeer ie8
1const gui.IE8 = 8000;
IE9
WebViewdwz simulatieversie, specificeer ie9
1const gui.IE9 = 9000;
IE10
WebViewdwz simulatieversie, specificeer ie10
1const gui.IE10 = 10000;
IE11
WebViewdwz simulatieversie, specificeer ie11
1const gui.IE11 = 11000;
EDGE
WebViewdwz simulatieversie, specificeer rand
1const gui.EDGE = 11001;