Effacer les filtres
Effacer les filtres

Copy nodes and sub-nodes of uitree to another uitree

11 vues (au cours des 30 derniers jours)
Hossein Sadeghi
Hossein Sadeghi le 15 Fév 2022
Hi,
I have two trees in app-designer and created some nodes and subnodes in one of them as follows:
for i=1:length(data1)
nodes(i) = uitreenode(tree1,'Text',data1(i));
subnodes(i) = uitreenode(nodes(i),'Text',data2(i));
end
Now I want to copy these nodes and subnodes to the second tree. I used:
Copyobj(nodes, tree2);
This works fine when the tree has no subnodes, but throw error for my case with subnodes.
  2 commentaires
Simon Chan
Simon Chan le 15 Fév 2022
Did you try the following?
copyobj(nodes(1),tree2)
copyobj(nodes(2),tree2)
Hossein Sadeghi
Hossein Sadeghi le 15 Fév 2022
Yes, same error!

Connectez-vous pour commenter.

Réponses (1)

James Sweetman
James Sweetman le 2 Jan 2023
This seems to work!
arrayfun(@(x,y) copyobj(flipud(x.Children),y),tree1,tree2)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by