Interface VisitRowsOptions

Options passed to Wunderbaum.visitRows.

interface VisitRowsOptions {
    includeHidden?: boolean;
    includeSelf?: boolean;
    reverse?: boolean;
    start?: null | WunderbaumNode;
    wrap?: boolean;
}

Properties

includeHidden?: boolean

Skip filtered nodes and children of collapsed nodes.

Default

false
includeSelf?: boolean

Return the start node as first result.

Default

true
reverse?: boolean

Traverse in opposite direction, i.e. bottom up.

Default

false
start?: null | WunderbaumNode

Start traversal at this node

Default

first (topmost) tree node
wrap?: boolean

Wrap around at last node and continue at the top, until the start node is reached again

Default

false