Lower this widget in the stacking order.
(self, belowThis=None)
| 1164 | return self.tk.call(('send', interp, cmd) + args) |
| 1165 | |
| 1166 | def lower(self, belowThis=None): |
| 1167 | """Lower this widget in the stacking order.""" |
| 1168 | self.tk.call('lower', self._w, belowThis) |
| 1169 | |
| 1170 | def tkraise(self, aboveThis=None): |
| 1171 | """Raise this widget in the stacking order.""" |