CollectionBase<T>
Class
Generic base collection for editing model elements; provides validated add, index access, and enumeration.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Editing.Collections
Assembly:Telerik.Windows.Documents.Fixed.dll
Type Parameters:
T
Syntax:
C#
public abstract class CollectionBase<T> : IEnumerable<T>, IEnumerable
Inheritance: objectCollectionBase<T>
Derived Classes:
Implements:
Methods
Adds the specified item after validating input.
C#
public void Add(T item)
The item.
Returns an enumerator to iterate over the items in insertion order.
C#
public IEnumerator<T> GetEnumerator()
IEnumerator<T>
A IEnumerator<T> that can be used to iterate through the collection.
Implements: