MCPcopy Index your code
hub / github.com/RustPython/RustPython / grid_propagate

Method grid_propagate

Lib/tkinter/__init__.py:1970–1981  ·  view source on GitHub ↗

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_)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

_getbooleanMethod · 0.95
callMethod · 0.45

Tested by

no test coverage detected