timer クラス : ShowException ゲッタ

説明

エラーメッセージを表示するかどうかを示す値を返します。

構文

instance.ShowException

引数

無し。

返り値

クラス説明
boolエラーメッセージを表示するかどうかを示す値。

サンプルコード

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

1:

class handle

2:

open method void THandler(dictionary dic)

3:

... // timer handler code.

4:

endmethod

5:

endclass

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

1:

handle h = new handle();

2:

timer tim = new timer(h,"THandler(dictionary)", 1000);

3:

bool show = tim.ShowException; // "true"

注意

ハンドラで例外が発生した場合にエラーメッセージを表示するかどうかのフラグです。

表示される場合は true を返します。 それ以外の場合は false を返します。

デフォルトは true です。

参照リンク

無し。

Copyright © Cooker All rights reserved.