次の方法で共有


ParserError.ErrorText プロパティ

定義

ParserError オブジェクトのエラーを表す文字列を取得または設定します。

public:
 property System::String ^ ErrorText { System::String ^ get(); void set(System::String ^ value); };
public string ErrorText { get; set; }
member this.ErrorText : string with get, set
Public Property ErrorText As String

プロパティ値

String

エラー メッセージを含む文字列。

次のコード例では、オブジェクトのプロパティを設定する ErrorText 方法を ParserError 示します。

MyParserError.ErrorText = "My Error Text";
myParserError.ErrorText = "My Error Text"

注釈

このプロパティを ErrorText 使用して、オブジェクトに表示するパーサー エラーに対してプログラマ定義のエラー メッセージを ParserError 提供します。

適用対象