__init__(self,
title,
role=None,
fmt=None,
all_rows=False)
(Constructor)
|
|
x.__init__(...) initializes x; see help(type(x)) for signature
- Parameters:
title (basestring) - The title to display in the column header.
role (int or NoneType) - The role that the column should display data from. May be None if
no data is to be displayed in the column (e.g. the column that
contains only group expansion arrows).
fmt (basestring) - A string describing the formatting to apply to data before
displaying it. If None, no formatting will be applied.
all_rows (bool) - True if the column contains data for all rows. False if the
column only contains data for sequence rows.
- Overrides:
object.__init__
|