Internal function.
(self, *args)
| 3113 | self.tk.call((self._w, 'dtag') + args) |
| 3114 | |
| 3115 | def find(self, *args): |
| 3116 | """Internal function.""" |
| 3117 | return self._getints( |
| 3118 | self.tk.call((self._w, 'find') + args)) or () |
| 3119 | |
| 3120 | def find_above(self, tagOrId): |
| 3121 | """Return items above TAGORID.""" |