timer クラス : Handler ゲッタ

説明

タイマー処理をするユーザー定義クラスのインスタンスを返します。

構文

instance.Handler

引数

無し。

返り値

クラス説明
user-defined classユーザー定義クラス。

サンプルコード

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

1:

class handle

2:

open method void THandler(dictionary dic)

3:

... // timer handler code.

4:

endmethod

5:

endclass

Handler ゲッターの使い方は次のとおりです。

1:

handle h = new handle();

2:

timer tim = new timer(h, "THandler(dictionary)", 1000); // It sets the instance of the handle class.

3:

m.Show(tim.Handler.TypeName); // "handle"

注意

返り値の型は設定したインスタンスに依存します。

参照リンク

無し。

Copyright © Cooker All rights reserved.