Return the value of option for a child window.
(self, child, option)
| 4988 | return self.sash("place", index, x, y) |
| 4989 | |
| 4990 | def panecget(self, child, option): |
| 4991 | """Return the value of option for a child window.""" |
| 4992 | return self.tk.call( |
| 4993 | (self._w, 'panecget') + (child, '-'+option)) |
| 4994 | |
| 4995 | def paneconfigure(self, tagOrId, cnf=None, **kw): |
| 4996 | """Query or modify the configuration options for a child window. |