In C# I found a method that was pretty sweet that allowed you to get all the descendants and all of THEIR descendants from a specified control.
I\'m looking for a si
I'd like to add to Hans' answer, that you have to check if parent is a SplitPane
. Because SplitPane
s have an empty list using getUnmodifiableChildren()
, you'll have to use getItems()
instead. (I do not know if there are other parents that do not provide their children via getUnmodifiableChildren()
. SplitPane
was the first I found...)