Version: Unity 6 Preview (6000.0)
LanguageEnglish
  • C#

BaseListView Constructor

Declaration

public BaseListView();

Description

Creates a BaseListView with all default properties. The BaseVerticalCollectionView.itemsSource must all be set for the BaseListView to function properly.


Declaration

public BaseListView(IList itemsSource, float itemHeight);

Parameters

itemsSource The list of items to use as a data source.
itemHeight The height of each item, in pixels.

Description

Constructs a BaseListView, with all important properties provided.