*********** wx.ListView *********** Inheritance diagram for `wx.ListView`: | .. inheritance-diagram:: wx.ListView | Description =========== This class currently simply presents a simpler to use interface for the `wx.ListCtrl `_ -- it can be thought of as a *facade* for that complicated class. Using it is preferable to using `wx.ListCtrl `_ directly whenever possible because in the future some ports might implement `wx.ListView` but not the full set of `wx.ListCtrl` features. Other than different interface, this class is identical to `wx.ListCtrl`. In particular, it uses the same events, same window styles and so on. Derived From ^^^^^^^^^^^^^ * `wx.ListCtrl `_ * `wx.Control `_ * `wx.Window `_ * `wx.EvtHandler `_ * `wx.Object `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(parent, id=-1, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.LC_REPORT, validator=wx.DefaultValidator, name=wx.ListCtrlNameStr) Constructor. **Parameters:** * `parent` (`wx.Window `_) * `id` (int) * `pos` (`wx.Point `_) * `size` (`wx.Size `_) * `style` (long) * `validator` (`wx.Validator `_) * `name` (string) | **Returns:** `wx.ListView `_