tkinter - Access to Canvas Items stack -
as per official documentation, items inserted on tkinter canvas
placed on stack.
though there methods raise, lower , remove items stack, not find method access stack.
is there way access stack ?
or have maintain own stack items added canvas ?
the find
method return items based on whatever search criteria give it. items returned in stacking order. item, use search criteria "all"
:
items = the_canvas.find("all")
Comments
Post a Comment