IGH_DataAccessGetDataListT Method (String, ListT) |
Retrieve an entire list of data from an input parameter during GH_Component.SolveInstance().
Namespace:
Grasshopper.Kernel
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax bool GetDataList<T>(
string name,
List<T> list
)
Function GetDataList(Of T) (
name As String,
list As List(Of T)
) As Boolean
Parameters
- name
- Type: SystemString
- list
- Type: System.Collections.GenericListT
Type Parameters
- T
- Type of the data to retrieve.
If the data type does not match the parameter type,
a conversion will be attempted.
Return Value
Type:
BooleanTrue on success, false on failure.
Remarks Parameter access by index is faster, consider using the other overload if possible.
See Also