ClassDataDescriptorCollection<T>
Class
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:
Implements:
Inherited Members
Methods
ClearItems()
Clears the items.
Declaration
cs-api-definition
protected override void ClearItems()
Overrides
InsertItem(int, T)
Inserts the item.
Declaration
cs-api-definition
protected override void InsertItem(int index, T item)
Parameters
index
The index.
item
T
The item.
Overrides
RemoveItem(int)
Removes the item.
Declaration
cs-api-definition
protected override void RemoveItem(int index)
Parameters
index
The index.
Overrides
SetItem(int, T)
Sets the item.
Declaration
cs-api-definition
protected override void SetItem(int index, T item)
Parameters
index
The index.
item
T
The item.
Overrides