Debug.IndentSize Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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>