Return all items below TAGORID.
(self, tagOrId)
| 2914 | return self.find('all') |
| 2915 | |
| 2916 | def find_below(self, tagOrId): |
| 2917 | """Return all items below TAGORID.""" |
| 2918 | return self.find('below', tagOrId) |
| 2919 | |
| 2920 | def find_closest(self, x, y, halo=None, start=None): |
| 2921 | """Return item which is closest to pixel at X, Y. |