A collection that raises events when elements are added or removed.

Namespace:  TallComponents.Interaction
Assembly:  TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.20.0

Syntax

C#
public class Collection<TElement> : ICollection<TElement>, 
	IList<TElement>, IEnumerable, IEnumerable<TElement>
Visual Basic (Declaration)
Public Class Collection(Of TElement) _
	Implements ICollection(Of TElement), IList(Of TElement),  _
	IEnumerable, IEnumerable(Of TElement)

Type Parameters

TElement
The type of the elements in the collection.

Remarks

Elements are stored in a particular order, i.e. they have position in the collection and can be addressed by index. Duplicate elements are avoided. If an element is added that already exists, it will be moved to the new position.

Inheritance Hierarchy

System..::.Object
  TallComponents.Interaction..::.Collection<(Of <(TElement>)>)
    TallComponents.Interaction.WinForms.Controls..::.ZoomFactorCollection

See Also