switch クラス : ShowException ゲッタ

説明

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

構文

instance.ShowException

引数

無し。

返り値

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

サンプルコード

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

1:

class handle

2:

open method void LCHandler(dictionary dic)

3:

... // event handler code.

4:

endmethod

5:

endclass

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

1:

browser b = new browser();

2:

handle h = new handle();

3:

switch sw = b.LoadCompleted(h,"LCHandler(dictionary)"); // It sets the instance of the handle class.

4:

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

注意

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

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

デフォルトは true です。

参照リンク

無し。

Copyright © Cooker All rights reserved.