Return all items below TAGORID.
(self, tagOrId)
| 3043 | return self.find('all') |
| 3044 | |
| 3045 | def find_below(self, tagOrId): |
| 3046 | """Return all items below TAGORID.""" |
| 3047 | return self.find('below', tagOrId) |
| 3048 | |
| 3049 | def find_closest(self, x, y, halo=None, start=None): |
| 3050 | """Return item which is closest to pixel at X, Y. |