How To Get The Attachment Values When A Widget Has Been Attached To A Grid
This will show all attributes and their values of an existing widget: (I got the idea from user285594 at this post) obj = [widget identifier] for pspec in obj.props: pr
Solution 1:
The attachment and packing values are child properties, not properties, so you have to retrieve them with child_get_property()
.
Post a Comment for "How To Get The Attachment Values When A Widget Has Been Attached To A Grid"