Class
DataDescriptorCollection<T>

Defines a collection of objects of type DataDescriptor.

Definition

Namespace:Telerik.Maui.Controls.Data

Assembly:Telerik.Maui.Controls.dll

Type Parameters:

T

The type of the T.

Syntax:

cs-api-definition
public abstract class DataDescriptorCollection<T> : ObservableCollection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged where T : DataDescriptor

Inheritance: objectCollection<T>ObservableCollection<T>DataDescriptorCollection<T>

Derived Classes: AggregateDescriptorCollectionFilterDescriptorCollectionGroupDescriptorCollectionSortDescriptorCollection

Implements: ICollectionICollection<T>IEnumerableIEnumerable<T>IListIList<T>INotifyCollectionChangedINotifyPropertyChangedIReadOnlyCollection<T>IReadOnlyList<T>

Inherited Members ObservableCollection<T>.Move(int, int)ObservableCollection<T>.MoveItem(int, int)ObservableCollection<T>.OnPropertyChanged(PropertyChangedEventArgs)ObservableCollection<T>.OnCollectionChanged(NotifyCollectionChangedEventArgs)ObservableCollection<T>.BlockReentrancy()ObservableCollection<T>.CheckReentrancy()ObservableCollection<T>.CollectionChangedObservableCollection<T>.PropertyChangedCollection<T>.Add(T)Collection<T>.Clear()Collection<T>.CopyTo(T[], int)Collection<T>.Contains(T)Collection<T>.GetEnumerator()Collection<T>.IndexOf(T)Collection<T>.Insert(int, T)Collection<T>.Remove(T)Collection<T>.RemoveAt(int)Collection<T>.CountCollection<T>.ItemsCollection<T>.this[int]

Methods

ClearItems()

Clears the items.

Declaration

cs-api-definition
protected override void ClearItems()

Overrides ObservableCollection<T>.ClearItems()

InsertItem(int, T)

Inserts the item.

Declaration

cs-api-definition
protected override void InsertItem(int index, T item)

Parameters

index

int

The index.

item

T

The item.

Overrides ObservableCollection<T>.InsertItem(int, T)

RemoveItem(int)

Removes the item.

Declaration

cs-api-definition
protected override void RemoveItem(int index)

Parameters

index

int

The index.

Overrides ObservableCollection<T>.RemoveItem(int)

SetItem(int, T)

Sets the item.

Declaration

cs-api-definition
protected override void SetItem(int index, T item)

Parameters

index

int

The index.

item

T

The item.

Overrides ObservableCollection<T>.SetItem(int, T)