Set or get the status for propagation of geometry information. A boolean argument specifies whether the geometry information of the slaves will determine the size of this widget. If no argument is given, the current setting will be returned.
(self, flag=_noarg_)
| 1968 | 'grid', 'location', self._w, x, y)) or None |
| 1969 | |
| 1970 | def grid_propagate(self, flag=_noarg_): |
| 1971 | """Set or get the status for propagation of geometry information. |
| 1972 | |
| 1973 | A boolean argument specifies whether the geometry information |
| 1974 | of the slaves will determine the size of this widget. If no argument |
| 1975 | is given, the current setting will be returned. |
| 1976 | """ |
| 1977 | if flag is Misc._noarg_: |
| 1978 | return self._getboolean(self.tk.call( |
| 1979 | 'grid', 'propagate', self._w)) |
| 1980 | else: |
| 1981 | self.tk.call('grid', 'propagate', self._w, flag) |
| 1982 | |
| 1983 | def grid_rowconfigure(self, index, cnf={}, **kw): |
| 1984 | """Configure row INDEX of a grid. |
nothing calls this directly
no test coverage detected