Enum XmlParser.NodeType
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum XmlParser.NodeType : long
Fields
Cdata = 5
A node type for CDATA (Character Data) sections, e.g.
<![CDATA[CDATA section]]>
.Comment = 4
A comment node type, e.g.
<!--A comment-->
.Element = 1
An element node type, also known as a tag, e.g.
<title>
.ElementEnd = 2
An end of element node type, e.g.
</title>
.None = 0
There's no node (no file or buffer opened).
Text = 3
A text node type, i.e. text that is not inside an element. This includes whitespace.
Unknown = 6
An unknown node type.