Click or drag to resize

AddInTreeImplGetTreeNode(String, Boolean) Method

Gets the AddInTreeNode representing the specified path.

Namespace: Altaxo.AddInItems
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public AddInTreeNode? GetTreeNode(
	string path,
	bool throwOnNotFound
)

Parameters

path  String
The path of the AddIn tree node
throwOnNotFound  Boolean
If set to true, this method throws a TreePathNotFoundException when the path does not exist. If set to false, null is returned for non-existing paths.

Return Value

AddInTreeNode
The add-in tree node for the specified path, or null if it does not exist and throwOnNotFound is false.

Implements

IAddInTreeGetTreeNode(String, Boolean)
See Also