switch クラス : OneShot()メソッド

説明

イベント処理を開始します。

構文

instance.OneShot()

引数

無し。

返り値

無し。

サンプルコード

次のクラス定義があるとします。

1:

class handle

2:

open method void LCHandler(dictionary dic)

3:

... // event handler code.

4:

endmethod

5:

endclass

OneShot() メソッドの使い方は次のとおりです。

1:

browser b = new browser();

2:

handle h = new handle();

3:

switch sw = b.LoadCompleted(h,"LCHandler(dictionary)");

4:

sw.OneShot(); // The handler method will be called just once.

注意

イベントが発生すると、ハンドラメソッドを一度だけ呼び出します。

呼び出し後にイベント処理が停止します。

このメソッドが既に呼び出されている場合、再呼び出しは無視されます。

参照リンク

無し。

Copyright © Cooker All rights reserved.