If item is specified, sets the focus item to item. Otherwise, returns the current focus item, or '' if there is none.
(self, item=None)
| 1247 | |
| 1248 | |
| 1249 | def focus(self, item=None): |
| 1250 | """If item is specified, sets the focus item to item. Otherwise, |
| 1251 | returns the current focus item, or '' if there is none.""" |
| 1252 | return self.tk.call(self._w, "focus", item) |
| 1253 | |
| 1254 | |
| 1255 | def heading(self, column, option=None, **kw): |