Lower this widget in the stacking order.
(self, belowThis=None)
| 1069 | return self.tk.call(('send', interp, cmd) + args) |
| 1070 | |
| 1071 | def lower(self, belowThis=None): |
| 1072 | """Lower this widget in the stacking order.""" |
| 1073 | self.tk.call('lower', self._w, belowThis) |
| 1074 | |
| 1075 | def tkraise(self, aboveThis=None): |
| 1076 | """Raise this widget in the stacking order.""" |