From a065e04d529da1d847b5062a12c46d916408bf32 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 21:46:22 -0500 Subject: update based on https://github.com/mdn/yari/issues/2028 --- files/ja/toolkit_api/exticonsole/index.html | 71 ----------------------------- 1 file changed, 71 deletions(-) delete mode 100644 files/ja/toolkit_api/exticonsole/index.html (limited to 'files/ja/toolkit_api/exticonsole/index.html') diff --git a/files/ja/toolkit_api/exticonsole/index.html b/files/ja/toolkit_api/exticonsole/index.html deleted file mode 100644 index 514596b6bf..0000000000 --- a/files/ja/toolkit_api/exticonsole/index.html +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: extIConsole -slug: Toolkit_API/extIConsole -tags: - - FUEL - - Interfaces - - SMILE - - STEEL - - XPCOM - - XPCOM API Reference -translation_of: Mozilla/Tech/Toolkit_API/extIConsole ---- -
-
-

この記事は Thunderbird 3 の新機能について述べています

-
-

extIConsole インタフェースは、コンソールへの簡単なアクセスを提供します。extIConsoletoolkit/components/exthelper/extIApplication.idl で定義されています。

-

XPCOM サービスを通して実装された extIApplication: FUEL (Firefox) または STEEL (Thunderbird), SMILE (SeaMonkey) のページの説明を参照してください。

-

メソッドの概要

- - - - - - - - - -
void log(in AString aMsg)
void open()
-

プロパティ

- - - - - - - - -
プロパティ説明
-

メソッド

-

log()

-

指定した文字列をコンソールへ送る。

-
void log(in AString aMsg)
-
-
引数
-
-
- aMsg
-
- コンソールへ送る文字列
-
-
戻り値
-

open()

-

エラーコンソールのウィンドウを開く。ウィンドウがすでに開かれている場合は前面に表示する。

-
void open()
-
-
引数
-

FIXME:

-
戻り値
-

FIXME:

-

-
// コンソールにメッセージを送る
-Application.console.log("Hello from my JS code");
-
-// コンソールウィンドウを開く (すでに開いている場合は前面に表示)
-Application.console.open();
-
-

関連情報

- -- cgit v1.2.3-54-g00ecf