Trace.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.
This property is stored on per-thread/per-request basis.
To set the AutoFlush and IndentSize for Trace in .NET Framework apps, you can also edit the configuration file that corresponds to the name of your application. The configuration file should be formatted like the following example:
<configuration>
<system.diagnostics>
<trace autoflush="false" indentsize="3" />
</system.diagnostics>
</configuration>