Return information about the placing options for this widget.
(self)
| 2533 | forget = place_forget |
| 2534 | |
| 2535 | def place_info(self): |
| 2536 | """Return information about the placing options |
| 2537 | for this widget.""" |
| 2538 | d = _splitdict(self.tk, self.tk.call('place', 'info', self._w)) |
| 2539 | if 'in' in d: |
| 2540 | d['in'] = self.nametowidget(d['in']) |
| 2541 | return d |
| 2542 | |
| 2543 | info = place_info |
| 2544 | slaves = place_slaves = Misc.place_slaves |