Click or drag to resize

AddInTreeImplBuildItemsT Method

Builds the items in the path. Ensures that all items have the type T.

Namespace: Altaxo.AddInItems
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public IReadOnlyList<T> BuildItems<T>(
	string path,
	Object? parameter,
	bool throwOnNotFound = true
)

Parameters

path  String
A path in the addin tree.
parameter  Object
The owner used to create the objects.
throwOnNotFound  Boolean  (Optional)
If true, throws a TreePathNotFoundException if the path is not found. If false, an empty ArrayList is returned when the path is not found.

Type Parameters

T
The expected item type.

Return Value

IReadOnlyListT
The built items.

Implements

IAddInTreeBuildItemsT(String, Object, Boolean)
See Also