Children<TNode>.Move Method
Overloads
Name | Description |
---|---|
Moves a node from it's current parent (if it has one) and into this collection. | |
Moves nodes from their current parents (if they have one) into this collection. | |
Moves nodes from their current parents (if they have one) into this collection. |
Move(TNode)
Moves a node from it's current parent (if it has one) and into this collection.
public void Move(TNode node);
Parameters
Name | Type | Description |
---|---|---|
node | TNode | The node to move. |
Move(IEnumerable<TNode>)
Moves nodes from their current parents (if they have one) into this collection.
public void Move(IEnumerable<TNode> nodes);
Parameters
Name | Type | Description |
---|---|---|
nodes | The nodes to move. |
Move(TNode[])
Moves nodes from their current parents (if they have one) into this collection.
public void Move(params TNode[] nodes);
Parameters
Name | Type | Description |
---|---|---|
nodes | TNode[] | The nodes to move. |
Last modified: 09 November 2024