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