Is it possible to hide row/column lables in a wxPython Grid window?
Paul McNett
p at ulmcnett.com
Mon Oct 4 15:20:47 EDT 2004
More information about the Python-list mailing list
Mon Oct 4 15:20:47 EDT 2004
- Previous message (by thread): Is it possible to hide row/column lables in a wxPython Grid window?
- Next message (by thread): Encouraging Python adoption in your organization
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Kevin Dahlhausen writes: > I looked around the wiki, google, and CLP. Does anybody know > if this is possible out of the box? Try this: # turn off row labels grid.SetRowLabelSize(0) grid.SetColLabelSize(0) The GUI windows for these labels will still exist, but they won't be visible, which is probably all you care about. -- Paul McNett Independent Software Consultant http://www.paulmcnett.com
- Previous message (by thread): Is it possible to hide row/column lables in a wxPython Grid window?
- Next message (by thread): Encouraging Python adoption in your organization
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list