Inserts a set of nodes into the managed collection.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.HierarchicalData.Core (in DlhSoft.HierarchicalData.Core.dll)

Syntax

C#
public Node[] InsertRange(
	int index,
	IEnumerable<SimpleNodeItem> simpleNodeItems
)
Visual Basic (Declaration)
Public Function InsertRange ( _
	index As Integer, _
	simpleNodeItems As IEnumerable(Of SimpleNodeItem) _
) As Node()

Parameters

index
Type: System..::.Int32
The zero-based index at which the nodes should be inserted.
simpleNodeItems
Type: System.Collections.Generic..::.IEnumerable<(Of <(SimpleNodeItem>)>)
Item definitions representing the nodes to insert.

Return Value

The new nodes.

See Also