Does anyone know if there is any way to somehow print or return in text format the entire tree of a window tool’s view?
This could be useful if we break the general tree into small functions to load them later in the general tree.
A simple example. Imagine you have a tool with a general tree like this:
vb:row {
vb:button {
id="1",
text="My Button 1"
},
vb:button {
id="2",
text="My Button 2"
}
}
How to print or get this to extract to a text file for example. That is, get the entire tree to be able to examine it, with all the properties of each object and all that.
Any ideas?