NodeWalkDown is a method that nodes can implement to traverse additional nodes like widget parts during [NodeBase.WalkDown]. It is called with the function passed to [Node.WalkDown] after the function is called with the node itself.
(fun func(n Node) bool)
| 55 | // like widget parts during [NodeBase.WalkDown]. It is called with the function passed |
| 56 | // to [Node.WalkDown] after the function is called with the node itself. |
| 57 | NodeWalkDown(fun func(n Node) bool) |
| 58 | |
| 59 | // CopyFieldsFrom copies the fields of the node from the given node. |
| 60 | // By default, it is [NodeBase.CopyFieldsFrom], which automatically does |