Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Debug::IndentSize Property

 

Gets or sets the number of spaces in an indent.

Namespace:   System.Diagnostics
Assembly:  System (in System.dll)

public:
property int IndentSize {
	static int get();
	static void set(int value);
}

Property Value

Type: System::Int32

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

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

To set the AutoFlush and IndentSize for Debug, you can also edit 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>

.NET Framework
Available since 1.1
Return to top
Show: