Class DocumentTree
Represents a tree of related XBRL documents. Holds the root node and provides DFS enumeration of all nodes in the tree.
public class DocumentTree
- Inheritance
-
DocumentTree
- Inherited Members
Properties
Nodes
Enumerates all nodes in the tree in depth-first order (root included).
public IEnumerable<DocumentTreeNode> Nodes { get; }
Property Value
Root
The root node of the document tree.
public DocumentTreeNode Root { get; }