Interface IListViewItemData<TIndex>
Implement to create data for a list view
Namespace: Unity.ListViewFramework
Syntax
public interface IListViewItemData<TIndex>
Type Parameters
| Name | Description |
|---|---|
| TIndex | The type which is used as a unique index to map data to list items |
Properties
index
The index for this data
Declaration
TIndex index { get; }
Property Value
| Type | Description |
|---|---|
| TIndex |
selected
True if the item is currently selected. Used by multiselect to track items.
Declaration
bool selected { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
template
The template for this data
Declaration
string template { get; }
Property Value
| Type | Description |
|---|---|
| String |