Bagikan melalui


Debug.IndentLevel Properti

Definisi

Mendapatkan atau mengatur tingkat inden.

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

Nilai Properti

Tingkat inden. Defaultnya adalah 0.

Contoh

Contoh berikut mengatur tingkat inden dan memancarkan pesan penelusuran kesalahan.

#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
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")

Contoh ini mencetak output berikut:

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

Keterangan

Properti IndentLevel menunjukkan berapa kali inden ukuran IndentSize diterapkan.

Berlaku untuk

Lihat juga