Gets or sets the indent level.
Public Shared Property IndentLevel As Integer
Dim value As Integer value = Debug.IndentLevel Debug.IndentLevel = value
public static int IndentLevel { get; set; }
public: static property int IndentLevel { int get (); void set (int value); }
public static function get IndentLevel () : int public static function set IndentLevel (value : int)
The IndentLevel property represents the number of times the indent of size IndentSize is applied.
The following example sets the indent level and emits debugging messages.
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")
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");
#if defined(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" ); #endif
@if(@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"); @end
This example produces the following output:
List of errors Error 1: File not found Error 2: Directory not found End of list of errors
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune