Returns a list of all the content widgets for which this widget is the container.
(self)
| 1921 | |
| 1922 | # Place method that applies to the container widget |
| 1923 | def place_content(self): |
| 1924 | """Returns a list of all the content widgets for which this widget is |
| 1925 | the container.""" |
| 1926 | try: |
| 1927 | res = self.tk.call('place', 'content', self._w) |
| 1928 | except TclError: |
| 1929 | if self.info_patchlevel() >= (8, 6): |
| 1930 | raise |
| 1931 | res = self.tk.call('place', 'slaves', self._w) |
| 1932 | return [self._nametowidget(x) for x in self.tk.splitlist(res)] |
| 1933 | |
| 1934 | def place_slaves(self): |
| 1935 | """Synonym for place_content().""" |