次の方法で共有


Trace.IndentLevel プロパティ

インデントのレベルを取得または設定します。

Public Shared Property IndentLevel As Integer
[C#]
public static int IndentLevel {get; set;}
[C++]
public: __property static int get_IndentLevel();public: __property static void set_IndentLevel(int);
[JScript]
public static function get IndentLevel() : int;public static function set IndentLevel(int);

プロパティ値

インデント レベル。既定値は 0 です。

解説

このプロパティは、スレッド単位、要求単位で格納されます。

使用例

インデント レベルを増減し、トレーシング メッセージを出力する例を次に示します。

 
Trace.WriteLine("List of errors:")
Trace.Indent()
Trace.WriteLine("Error 1: File not found")
Trace.WriteLine("Error 2: Directory not found")
Trace.Unindent()
Trace.WriteLine("End of list of errors")


[C#] 
Trace.WriteLine("List of errors:");
 Trace.Indent();
 Trace.WriteLine("Error 1: File not found");
 Trace.WriteLine("Error 2: Directory not found");
 Trace.Unindent();
 Trace.WriteLine("End of list of errors");
   

[C++] 
Trace::WriteLine(S"List of errors:");
 Trace::Indent();
 Trace::WriteLine(S"Error 1: File not found");
 Trace::WriteLine(S"Error 2: Directory not found");
 Trace::Unindent();
 Trace::WriteLine(S"End of list of errors");
   

[JScript] 
Trace.WriteLine("List of errors:")
Trace.Indent()
Trace.WriteLine("Error 1: File not found")
Trace.WriteLine("Error 2: Directory not found")
Trace.Unindent()
Trace.WriteLine("End of list of errors")

この例外によって、次の出力が生成されます。

List of errors:
     Error 1: File not found
     Error 2: Directory not found
End of list of errors
   

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Trace クラス | Trace メンバ | System.Diagnostics 名前空間 | IndentSize | Debug | Trace | BooleanSwitch | TraceSwitch | TraceListener | DefaultTraceListener | ConditionalAttribute