Click or drag to resize

IAddInTreeGetTreeNode 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#
AddInTreeNode? GetTreeNode(
	string path,
	bool throwOnNotFound = true
)

Parameters

path  String
The path of the AddIn tree node
throwOnNotFound  Boolean  (Optional)
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.
See Also