Debug.IndentSize Property

Definition

Gets or sets the number of spaces in an indent.

public:
 static property int IndentSize { int get(); void set(int value); };
public static int IndentSize { get; set; }
static member IndentSize : int with get, set
Public Shared Property IndentSize As Integer

Property Value

The number of spaces in an indent. The default is four.

Remarks

A TextWriterTraceListener interprets this number as spaces. An EventLogTraceListener ignores this value.

For .NET Framework apps, you can also set the AutoFlush and IndentSize properties for Debug by editing the configuration file corresponding to the name of your application. The configuration file should be formatted as shown in the following example.

<configuration>
  <system.diagnostics>
    <trace autoflush="true" indentsize="7" />
  </system.diagnostics>
</configuration>

Applies to

See also