Aracılığıyla paylaş


Debug.IndentLevel Özellik

Tanım

Girinti düzeyini alır veya ayarlar.

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

Özellik Değeri

Girinti düzeyi. Varsayılan değer 0’dır.

Örnekler

Aşağıdaki örnek, girinti düzeyini ayarlar ve hata ayıklama iletileri yayar.

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

Bu örnek aşağıdaki çıkışı oluşturur:

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

Açıklamalar

özelliği, IndentLevel boyutun IndentSize girintisinin kaç kez uygulandığını temsil eder.

Şunlara uygulanır

Ayrıca bkz.