Trace.IndentLevel プロパティ

定義

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

public:
 static property int IndentLevel { int get(); void set(int value); };
public static int IndentLevel { get; set; }
static member IndentLevel : int with get, set
Public Shared Property IndentLevel As Integer

プロパティ値

インデント レベル。 既定値は 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" );
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");
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  

注釈

プロパティは IndentLevel 、サイズ IndentSize のインデントが適用される回数を表します。 このプロパティは、スレッドごと/要求ごとに格納されます。

適用対象

こちらもご覧ください