MCPcopy Index your code
hub / github.com/python/cpython / grid_columnconfigure

Method grid_columnconfigure

Lib/tkinter/__init__.py:2008–2014  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 11

tearDownMethod · 0.80
__init__Method · 0.80
create_widgetsMethod · 0.80
__init__Method · 0.80
create_widgetsMethod · 0.80
__init__Method · 0.80

Calls 1

_grid_configureMethod · 0.95