Return information about the options for positioning this widget in a grid.
(self)
| 2584 | self.tk.call('grid', 'remove', self._w) |
| 2585 | |
| 2586 | def grid_info(self): |
| 2587 | """Return information about the options |
| 2588 | for positioning this widget in a grid.""" |
| 2589 | d = _splitdict(self.tk, self.tk.call('grid', 'info', self._w)) |
| 2590 | if 'in' in d: |
| 2591 | d['in'] = self.nametowidget(d['in']) |
| 2592 | return d |
| 2593 | |
| 2594 | info = grid_info |
| 2595 | location = grid_location = Misc.grid_location |