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

説明

イベント処理を停止します。

構文

instance.Stop()

引数

無し。

返り値

無し。

サンプルコード

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

1:

class handle

2:

open method void LCHandler(dictionary dic)

3:

... // event handler code.

4:

endmethod

5:

endclass

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

1:

browser b = new browser();

2:

handle h = new handle();

3:

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

4:

sw.Start();

5:

sw.Stop(); // It stop the event handling.

注意

イベント処理がすでに停止している場合、再呼び出しは無視されます。

Cooker ver 3.0.3 でイベント処理の実装が変更されています。以下の点に注意して下さい。


このメソッドはイベント処理を停止しますがハンドラとイベントの割り当ては解除しません。ハンドラをイベント処理システムから完全に取り除くためにはDetach()メソッドを呼び出してください。

参照リンク

無し。

Copyright © Cooker All rights reserved.