Generic function
Returns the roots of the specified tree control.
tree-control-roots tree => roots
<tree-control>.
<sequence>.
duim-gadgets
duim-gadgets
Returns the roots of tree.
Create a tree control as follows:
*tree* := contain(make(<tree-control>,
roots: #(1, 2, 3),
children-generator:
method (x)
vector(x, x + 1)
end));You can return the roots of this tree control as follows:
tree-control-roots(*tree*);
<tree-control>, page 679
tree-control-roots-setter, page 689