Interface ICollectionView<T>
Namespace: Telerik.WinControls.Data
Assembly: Telerik.WinControls.dll
Syntax
public interface ICollectionView<T>
where T : IDataItem
Type Parameters
T
|
Properties
CanFilter
Declaration
bool CanFilter { get; }
Property Value
System.Boolean
|
CanGroup
Declaration
bool CanGroup { get; }
Property Value
System.Boolean
|
CanSort
Declaration
bool CanSort { get; }
Property Value
System.Boolean
|
CurrentItem
Declaration
T CurrentItem { get; }
Property Value
T
|
CurrentPosition
Declaration
int CurrentPosition { get; }
Property Value
System.Int32
|
Filter
Declaration
Predicate<T> Filter { get; set; }
Property Value
System.Predicate<T>
|
GroupComparer
Declaration
IComparer<Group<T>> GroupComparer { get; set; }
Property Value
System.Collections.Generic.IComparer<Group<T>>
|
GroupDescriptors
Declaration
GroupDescriptorCollection GroupDescriptors { get; }
Property Value
GroupDescriptorCollection
|
Groups
SortDescriptors
Declaration
SortDescriptorCollection SortDescriptors { get; }
Property Value
SortDescriptorCollection
|
SourceCollection
Declaration
IEnumerable<T> SourceCollection { get; }
Property Value
System.Collections.Generic.IEnumerable<T>
|
Methods
MoveCurrentTo(T)
Declaration
bool MoveCurrentTo(T item)
Parameters
T
item
|
Returns
System.Boolean
|
MoveCurrentToFirst()
Declaration
bool MoveCurrentToFirst()
Returns
System.Boolean
|
MoveCurrentToLast()
Declaration
bool MoveCurrentToLast()
Returns
System.Boolean
|
MoveCurrentToNext()
Declaration
bool MoveCurrentToNext()
Returns
System.Boolean
|
MoveCurrentToPosition(Int32)
Declaration
bool MoveCurrentToPosition(int position)
Parameters
System.Int32
position
|
Returns
System.Boolean
|
MoveCurrentToPrevious()
Declaration
bool MoveCurrentToPrevious()
Returns
System.Boolean
|
Refresh()
Declaration
void Refresh()
Events
CollectionChanged
Declaration
event NotifyCollectionChangedEventHandler CollectionChanged
Event Type
NotifyCollectionChangedEventHandler
|
CurrentChanged
Declaration
event EventHandler CurrentChanged
Event Type
System.EventHandler
|
CurrentChanging
Declaration
event CancelEventHandler CurrentChanging
Event Type
System.ComponentModel.CancelEventHandler
|