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

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

python - build a suggestions list using fuzzywuzzy -