Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/HeaderColumnSimple.1.py
2012-04-10 03:16:37 +00:00

7 lines
225 B
Python

header = wx.HeaderCtrlSimple() # Fill in the constructor
col = wx.HeaderColumnSimple("Title")
col.SetWidth(100)
col.SetSortable(100)
header.AppendColumn(col)