I want to access all the nodes that are contained in a TitledPane
for which I loop:
for ( Node panel : panelTitulado.getChildren()){
System.out.println ("Nodo: " + panel.toString());
}
This procedure works for containers like VBox but not for TitledPane
since there is no property getChildren()
Is there any property that allows access to the content to know all the nodes there in?