Interface INestedListViewItem<TData, TIndex>
Implement to define view logic for a nested list view item
Inherited Members
Namespace: Unity.ListViewFramework
Syntax
public interface INestedListViewItem<TData, TIndex> : INestedListViewItem, IListViewItem<TData, TIndex>, IListViewItem where TData : IListViewItemData<TIndex>
Type Parameters
Name | Description |
---|---|
TData | The type of data backing each list item |
TIndex | The type which is used as a unique index to map data to list items |
Events
toggleExpanded
Invoked when ToggleExpanded is called
Declaration
event Action<TData> toggleExpanded
Event Type
Type | Description |
---|---|
Action<TData> |