Xml.XMLIntf.IXMLDocument.NodeIndentStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property NodeIndentStr: DOMString read GetNodeIndentStr write SetNodeIndentStr;

C++

__property System::UnicodeString NodeIndentStr = {read=GetNodeIndentStr, write=SetNodeIndentStr};

Properties

Type Visibility Source Unit Parent
property public
Xml.XMLIntf.pas
Xml.XMLIntf.hpp
Xml.XMLIntf IXMLDocument

Description

Indicates the string that is inserted before nested nodes in the formatted XML text.

Use NodeIndentStr to customize how the document formats nodes that are added. When the Options property includes doNodeAutoIndent, this string is inserted in the generated XML before any newly added node, once for each nesting level.

If you do not assign a value to NodeIndentStr, IXMLDocument inserts two spaces to represent each nesting level.

See Also