__init__(self,
parent=None,
name='',
seq_type='list',
value_type='str',
dim=None,
titles=None)
(Constructor)
| source code
|
Set up the string list editor window.
- Parameters:
parent (wx.Window instance or None) - The parent GUI element.
name (str) - The name of the window.
seq_type (str) - The type of Python sequence. This should be one of 'list' or
'tuple'.
value_type (str) - The type of Python data expected in the sequence. This should be
one of 'float', 'int', or 'str'.
dim (int or None) - The fixed dimension that the sequence must conform to.
titles (list of str) - The titles of each of the elements of the fixed dimension
elements.
|