XmlTextWriter.IndentChar Property

Definition

Gets or sets which character to use for indenting when Formatting is set to Formatting.Indented.

public:
 property char IndentChar { char get(); void set(char value); };
public char IndentChar { get; set; }
member this.IndentChar : char with get, set
Public Property IndentChar As Char

Property Value

The character to use for indenting. The default is space.

Remarks

The XmlTextWriter allows you to set this property to any character. To ensure valid XML, you must specify a valid white space character, 0x9, 0x10, 0x13, or 0x20.

Note

Starting with .NET Framework 2.0, we recommend that you create XmlWriter instances by using the XmlWriter.Create method and the XmlWriterSettings class to take advantage of new functionality.

Applies to

See also