Raise this widget in the stacking order.
(self, aboveThis=None)
| 1186 | self.tk.call('lower', self._w, belowThis) |
| 1187 | |
| 1188 | def tkraise(self, aboveThis=None): |
| 1189 | """Raise this widget in the stacking order.""" |
| 1190 | self.tk.call('raise', self._w, aboveThis) |
| 1191 | |
| 1192 | lift = tkraise |
| 1193 |