モジュールGUI
guiモジュール
説明書:
1var gui = require('gui');
静的関数
setVersion
設定WebViewシステム内でシミュレートされた IE の最も高いバージョン。システム IE のバージョンがこのバージョンよりも低い場合、システム インストールのバージョンがシミュレートされます。
1static gui.setVersion(Integer ver);
呼び出しパラメータ:
- ver: 整数、つまりシミュレーションのバージョンを指定します
open
ウィンドウを開いて指定された URL にアクセスします
1
2static WebView gui.open(String url,
Object opt = {});
呼び出しパラメータ:
返される結果:
- WebView、開いているウィンドウオブジェクトを返します。
次のパラメータがサポートされています。
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
}
幅と高さが設定されているが、左または右が設定されていない場合、ウィンドウは自動的に中央に配置されます
空のブラウザウィンドウを開く
1static WebView gui.open(Object opt = {});
呼び出しパラメータ:
- opt: オブジェクト、オープンウィンドウパラメータ
返される結果:
- WebView、開いているウィンドウオブジェクトを返します。
次のパラメータがサポートされています。
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
}
幅と高さが設定されているが、左または右が設定されていない場合、ウィンドウは自動的に中央に配置されます
絶え間ない
IE7
WebViewie シミュレーション バージョン、ie7 を指定します
1const gui.IE7 = 7000;
IE8
WebViewie シミュレーション バージョン、ie8 を指定します
1const gui.IE8 = 8000;
IE9
WebViewie シミュレーション バージョン、ie9 を指定します
1const gui.IE9 = 9000;
IE10
WebViewie シミュレーションのバージョン、ie10 を指定します
1const gui.IE10 = 10000;
IE11
WebViewie シミュレーション バージョン、ie11 を指定します
1const gui.IE11 = 11000;
EDGE
WebViewつまり、シミュレーションのバージョン、エッジを指定します
1const gui.EDGE = 11001;