Return information about the placing options for this widget.
(self)
| 2741 | forget = place_forget |
| 2742 | |
| 2743 | def place_info(self): |
| 2744 | """Return information about the placing options |
| 2745 | for this widget.""" |
| 2746 | d = _splitdict(self.tk, self.tk.call('place', 'info', self._w)) |
| 2747 | if 'in' in d: |
| 2748 | d['in'] = self.nametowidget(d['in']) |
| 2749 | return d |
| 2750 | |
| 2751 | info = place_info |
| 2752 | content = place_content = Misc.place_content |