Click or drag to resize

IAddInTreeBuildItemsT 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#
IReadOnlyList<T> BuildItems<T>(
	string path,
	Object? parameter,
	bool throwOnNotFound = true
)

Parameters

path  String
A path in the addin tree.
parameter  Object
A parameter that gets passed into the doozer and condition evaluators.
throwOnNotFound  Boolean  (Optional)
If true, throws a TreePathNotFoundException if the path is not found. If false, an empty list is returned when the path is not found.

Type Parameters

T
The expected item type.

Return Value

IReadOnlyListT
The built items.
See Also