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)
| 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 |
nothing calls this directly
no test coverage detected