getting children's id
-
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)
. -
thank you. Just getting started on this.