Internal function.
(self, *args)
| 2901 | self.tk.call((self._w, 'dtag') + args) |
| 2902 | |
| 2903 | def find(self, *args): |
| 2904 | """Internal function.""" |
| 2905 | return self._getints( |
| 2906 | self.tk.call((self._w, 'find') + args)) or () |
| 2907 | |
| 2908 | def find_above(self, tagOrId): |
| 2909 | """Return items above TAGORID.""" |