Dim x As XMLBuilder
x = x.create("root")
x = x.element("ContentType").text(ContentType).up()
x = x.element("Encoding").text(Encoding).up()
'....
'....
'....
Dim props As Map
props.Initialize
props.Put("{http://xml.apache.org/xslt}indent-amount", "2")
props.Put("indent", "yes")
Log(x.asString2(props))
File.WriteString(File.DirApp, cFileConvXML, x.asString2(props))