Class DataDescriptorCollection<T>
Defines a collection of objects of type DataDescriptor.
Inheritance
System.Object
DataDescriptorCollection<T>
Namespace: Telerik.Maui.Controls.Data
Assembly: Telerik.Maui.Controls.dll
Syntax
public abstract class DataDescriptorCollection<T> : ObservableCollection<T> where T : DataDescriptor
Type Parameters
T
The type of the T. |
Methods
ClearItems()
Clears the items.
Declaration
protected override void ClearItems()
InsertItem(Int32, T)
Inserts the item.
Declaration
protected override void InsertItem(int index, T item)
Parameters
System.Int32
index
The index. |
T
item
The item. |
RemoveItem(Int32)
Removes the item.
Declaration
protected override void RemoveItem(int index)
Parameters
System.Int32
index
The index. |
SetItem(Int32, T)
Sets the item.
Declaration
protected override void SetItem(int index, T item)
Parameters
System.Int32
index
The index. |
T
item
The item. |