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 -

python - ValueError: could not convert string to float -

php - Laravel Get all child node count with condition -