Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.HeaderColumnSimple.1.py
2016-05-18 16:38:18 -07: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)