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

Method grid_columnconfigure

Lib/tkinter/__init__.py:1952–1958  ·  view source on GitHub ↗

Configure column INDEX of a grid. Valid resources are minsize (minimum size of the column), weight (how much does additional space propagate to this column) and pad (how much space to let additionally).

(self, index, cnf={}, **kw)

Source from the content-addressed store, hash-verified

1950 return self._gridconvvalue(res)
1951
1952 def grid_columnconfigure(self, index, cnf={}, **kw):
1953 """Configure column INDEX of a grid.
1954
1955 Valid resources are minsize (minimum size of the column),
1956 weight (how much does additional space propagate to this column)
1957 and pad (how much space to let additionally)."""
1958 return self._grid_configure('columnconfigure', index, cnf, kw)
1959
1960 columnconfigure = grid_columnconfigure
1961

Callers

nothing calls this directly

Calls 1

_grid_configureMethod · 0.95

Tested by

no test coverage detected