TiXmlPrinter
from panda3d.core import TiXmlPrinter
- class TiXmlPrinter
Bases:
Bases:
TiXmlVisitor
Print to memory functionality. The TiXmlPrinter is useful when you need to:
-# Print to memory (especially in non-STL mode) -# Control formatting (line endings, etc.)
When constructed, the TiXmlPrinter is in its default “pretty printing” mode. Before calling Accept() you can call methods to control the printing of the XML document. After
TiXmlNode.Accept()
is called, the printed document can be accessed via theCStr()
,Str()
, andSize()
methods.TiXmlPrinter uses the Visitor API.
TiXmlPrinter printer; printer.SetIndent( "\t" ); doc.Accept( &printer ); fprintf( stdout, "%s", printer.CStr() );
Inheritance diagram
- SetIndent(_indent: str)
Set the indent characters for printing. By default 4 spaces but tab (t) is also useful, or null/empty string for no indentation.
- SetLineBreak(_lineBreak: str)
Set the line breaking string. By default set to newline (n). Some operating systems prefer other characters, or can be set to the null/empty string for no indenation.
- SetStreamPrinting()
Switch over to “stream printing” which is the most dense formatting without linebreaks. Common when the XML is needed for network transmission.
- __init__()
- __init__(param0: TiXmlPrinter)