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

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -