TreeNodeExtensionsRemoveT Method |
Frees this node, i.e. removes the node from it's parent collection.
Namespace: Altaxo.CollectionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static bool Remove<T>(
this T node
)
where T : Object, ITreeListNodeWithParent<T>
Parameters
- node T
- The node to remove.
Type Parameters
- T
- The node type.
Return Value
Boolean if the node was removed; otherwise,
.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
T. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also