Configure column INDEX of a grid. Valid options 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)
| 2006 | return self._gridconvvalue(res) |
| 2007 | |
| 2008 | def grid_columnconfigure(self, index, cnf={}, **kw): |
| 2009 | """Configure column INDEX of a grid. |
| 2010 | |
| 2011 | Valid options are minsize (minimum size of the column), |
| 2012 | weight (how much does additional space propagate to this column) |
| 2013 | and pad (how much space to let additionally).""" |
| 2014 | return self._grid_configure('columnconfigure', index, cnf, kw) |
| 2015 | |
| 2016 | columnconfigure = grid_columnconfigure |
| 2017 |