Interface INestedListViewItemData<TChild, TIndex>
Implement to create data for a nested list view
Inherited Members
Namespace: Unity.ListViewFramework
Syntax
public interface INestedListViewItemData<TChild, TIndex> : IListViewItemData<TIndex>
Type Parameters
| Name | Description |
|---|---|
| TChild | The type of data in the list of children |
| TIndex | The type which is used as a unique index to map data to list items |
Properties
children
The list of children
Declaration
List<TChild> children { get; }
Property Value
| Type | Description |
|---|---|
| List<TChild> |
Events
childrenChanging
Invoked when setting the list of children
Declaration
event Action<INestedListViewItemData<TChild, TIndex>, List<TChild>> childrenChanging
Event Type
| Type | Description |
|---|---|
| Action<INestedListViewItemData<TChild, TIndex>, List<TChild>> |