Interface IHierarchicalCollectionAdapter<T>
Namespace: Telerik.Windows.Core
Assembly: Telerik.Windows.Scheduling.Core.dll
Syntax
public interface IHierarchicalCollectionAdapter<T> : INotifyCollectionChanged, INotifyPropertyChanged
Type Parameters
T
|
Properties
Count
Declaration
int Count { get; }
Property Value
System.Int32
|
Item[Int32]
Declaration
T this[int index] { get; }
Parameters
System.Int32
index
|
Property Value
T
|
Methods
GetItemWrapperByItemKey(Object)
Declaration
T GetItemWrapperByItemKey(object key)
Parameters
System.Object
key
|
Returns
T
|
TakeBetween(Int32, Int32)
Declaration
IEnumerable<T> TakeBetween(int startIndex, int endIndex)
Parameters
System.Int32
startIndex
|
System.Int32
endIndex
|
Returns
System.Collections.Generic.IEnumerable<T>
|