次の方法で共有


Debug.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 です。

解説

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

使用例

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

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

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

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

[JScript] 
Debug.WriteLine("List of errors:");
Debug.Indent();
Debug.WriteLine("Error 1: File not found");
Debug.WriteLine("Error 2: Directory not found");
Debug.Unindent();
Debug.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 ファミリ, .NET Compact Framework - Windows CE .NET

参照

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