Reputation: 2244
How will I retrieve all the tag ID's of all the elements in my canvas Python Tkinter? ANy help would be very much appreciated.
Upvotes: 0
Views: 368
Reputation: 386210
To get the id of all of the elements on a canvas, use the find_all
method:
id_list = the_canvas.find_all()
Upvotes: 1