Lower this widget in the stacking order.
(self, belowThis=None)
| 1182 | return self.tk.call(('send', interp, cmd) + args) |
| 1183 | |
| 1184 | def lower(self, belowThis=None): |
| 1185 | """Lower this widget in the stacking order.""" |
| 1186 | self.tk.call('lower', self._w, belowThis) |
| 1187 | |
| 1188 | def tkraise(self, aboveThis=None): |
| 1189 | """Raise this widget in the stacking order.""" |