DataTree(T).AddRange Method (IEnumerable(T))

DataTreeTAddRange Method (IEnumerableT)

Add (append) a list of data items to the last branch in the tree. If no branch exists yet, a new one will be created.

Namespace:  Grasshopper
Assembly:  Grasshopper (in Grasshopper.dll)
Syntax
public void AddRange(
	IEnumerable<T> data
)
Public Sub AddRange ( 
	data As IEnumerable(Of T)
)

Parameters

data
Type: System.Collections.GenericIEnumerableT
Data to append
See Also