Modulo modulo base

modulegui

modulo gui

Istruzioni:

1
var gui = require('gui');

funzione statica

setVersion

impostareWebViewLa versione simulata più alta di IE all'interno del sistema. Quando la versione di IE del sistema è inferiore a questa versione, verrà simulata la versione di installazione del sistema.

1
static gui.setVersion(Integer ver);

Parametri di chiamata:

  • ver: Numero intero, specifica ad esempio la versione della simulazione

open

Apri una finestra e visita l'URL specificato

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

Parametri di chiamata:

  • url: è possibile utilizzare la stringa, l'URL specificatofs:pathAccedi al file system locale
  • opt: Oggetto, parametri della finestra aperta

Risultati restituiti:

  • WebView, restituisce l'oggetto finestra aperta

Sono supportati i seguenti parametri:

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 }

Quando sono impostate larghezza e altezza, ma non sono impostate sinistra o destra, la finestra verrà centrata automaticamente


Apri una finestra del browser vuota

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

Parametri di chiamata:

  • opt: Oggetto, parametri della finestra aperta

Risultati restituiti:

  • WebView, restituisce l'oggetto finestra aperta

Sono supportati i seguenti parametri:

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 }

Quando sono impostate larghezza e altezza, ma non sono impostate sinistra o destra, la finestra verrà centrata automaticamente

costante

IE7

WebViewcioè la versione di simulazione, specificare ie7

1
const gui.IE7 = 7000;

IE8

WebViewcioè la versione di simulazione, specificare ie8

1
const gui.IE8 = 8000;

IE9

WebViewcioè versione di simulazione, specificare ie9

1
const gui.IE9 = 9000;

IE10

WebViewcioè versione di simulazione, specificare ie10

1
const gui.IE10 = 10000;

IE11

WebViewcioè versione di simulazione, specificare ie11

1
const gui.IE11 = 11000;

EDGE

WebViewcioè versione di simulazione, specificare il bordo

1
const gui.EDGE = 11001;