Return all items below TAGORID.
(self, tagOrId)
| 3126 | return self.find('all') |
| 3127 | |
| 3128 | def find_below(self, tagOrId): |
| 3129 | """Return all items below TAGORID.""" |
| 3130 | return self.find('below', tagOrId) |
| 3131 | |
| 3132 | def find_closest(self, x, y, halo=None, start=None): |
| 3133 | """Return item which is closest to pixel at X, Y. |