getting children's id
General and Desktop
3
Posts
2
Posters
703
Views
2
Watching
-
If i am at the QTreeWidgetItem object, how can i get its children (in terms of an id) that i can run functions on the children id?
-
Hi, welcome to devnet.
What kind of id do you mean?
You can get all children of a QTreeWidgetItem viachildCount()andchild(int index). -
Hi, welcome to devnet.
What kind of id do you mean?
You can get all children of a QTreeWidgetItem viachildCount()andchild(int index).thank you. Just getting started on this.