Modul Grundmodul

modulegui

GUI-Modul

Anweisungen:

1
var gui = require('gui');

statische Funktion

setVersion

aufstellenWebViewDie höchste simulierte IE-Version im System. Wenn die System-IE-Version niedriger als diese Version ist, wird die Systeminstallationsversion simuliert.

1
static gui.setVersion(Integer ver);

Aufrufparameter:

  • ver: Ganzzahl, geben Sie die Simulationsversion an

open

Öffnen Sie ein Fenster und besuchen Sie die angegebene URL

1 2
static WebView gui.open(String url, Object opt = {});

Aufrufparameter:

  • url: String, die angegebene URL, kann verwendet werdenfs:pathGreifen Sie auf das lokale Dateisystem zu
  • opt: Objekt, Fensterparameter öffnen

Rückgabeergebnisse:

  • WebView, gibt das Open-Window-Objekt zurück

Folgende Parameter werden unterstützt:

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 }

Wenn Breite und Höhe festgelegt sind, links oder rechts jedoch nicht festgelegt sind, wird das Fenster automatisch zentriert


Öffnen Sie ein leeres Browserfenster

1
static WebView gui.open(Object opt = {});

Aufrufparameter:

  • opt: Objekt, Fensterparameter öffnen

Rückgabeergebnisse:

  • WebView, gibt das Open-Window-Objekt zurück

Folgende Parameter werden unterstützt:

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 }

Wenn Breite und Höhe festgelegt sind, links oder rechts jedoch nicht festgelegt sind, wird das Fenster automatisch zentriert

Konstante

IE7

WebViewdh Simulationsversion, geben Sie ie7 an

1
const gui.IE7 = 7000;

IE8

WebViewdh Simulationsversion, geben Sie ie8 an

1
const gui.IE8 = 8000;

IE9

WebViewdh Simulationsversion, geben Sie ie9 an

1
const gui.IE9 = 9000;

IE10

WebViewdh Simulationsversion, geben Sie ie10 an

1
const gui.IE10 = 10000;

IE11

WebViewdh Simulationsversion, geben Sie ie11 an

1
const gui.IE11 = 11000;

EDGE

WebViewdh Simulationsversion, Kante angeben

1
const gui.EDGE = 11001;