[]
Initializes a new instance of the DocumentMapNode class with the specified properties.
public DocumentMapNode(string label, string bookmark, int[] levels, int[] numerics, IEnumerable<DocumentMapNode> children)
Type | Name | Description |
---|---|---|
string | label | The label of the document map node. |
string | bookmark | The bookmark of the document map node. |
int[] | levels | The levels of the document map node. |
int[] | numerics | The numeric elements of the document map node. |
IEnumerable<DocumentMapNode> | children | The child nodes of the document map node. |
Initializes a new instance of the DocumentMapNode class with the specified properties.
public DocumentMapNode(string label, string bookmark, int[] levels, int[] numerics, Func<IEnumerable<DocumentMapNode>> childrenFn)
Type | Name | Description |
---|---|---|
string | label | The label of the document map node. |
string | bookmark | The bookmark of the document map node. |
int[] | levels | The levels of the document map node. |
int[] | numerics | The numeric elements of the document map node. |
Func<IEnumerable<DocumentMapNode>> | childrenFn | A function that returns the child nodes of the document map node. |