Generic function
Sets the roots of the specified tree control.
tree-control-roots-setter roots tree #key frame-manager => roots
<sequence>.
<tree-control>.
<frame-manager>.
<sequence>.
duim-gadgets
duim-gadgets
Sets the roots of tree.
Create a tree control without specifying any roots as follows:
*tree* := contain(make(<tree-control>,
children-generator:
method (x)
vector(x, x + 1)
end));You can set the roots of this tree control as follows:
tree-control-roots(*tree*) := #(1, 2, 3);
The tree control is updated on the screen to reflect this change.
<tree-control>, page 679
tree-control-roots, page 688