[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Rendering.DocumentMapNode.-ctor

DocumentMapNode Constructor

DocumentMapNode(string, string, int[], int[], IEnumerable<DocumentMapNode>)

Initializes a new instance of the DocumentMapNode class with the specified properties.

Declaration
public DocumentMapNode(string label, string bookmark, int[] levels, int[] numerics, IEnumerable<DocumentMapNode> children)
Parameters
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.

DocumentMapNode(string, string, int[], int[], Func<IEnumerable<DocumentMapNode>>)

Initializes a new instance of the DocumentMapNode class with the specified properties.

Declaration
public DocumentMapNode(string label, string bookmark, int[] levels, int[] numerics, Func<IEnumerable<DocumentMapNode>> childrenFn)
Parameters
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.