Debug.IndentLevel Propriété

Définition

Obtient ou définit le niveau de retrait.

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

Valeur de propriété

Niveau de retrait. La valeur par défaut est 0.

Exemples

L’exemple suivant définit le niveau de retrait et émet des messages de débogage.

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

Cet exemple produit la sortie suivante :

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

Remarques

La IndentLevel propriété représente le nombre de fois où le retrait de la taille IndentSize est appliqué.

S’applique à

Voir aussi