Adds an element to the collection.

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

Syntax

C#
public virtual void Add(
	TElement element
)
Visual Basic (Declaration)
Public Overridable Sub Add ( _
	element As TElement _
)

Parameters

element
Type: TElement
The interactor that will be added.

Implements

ICollection<(Of <(T>)>)..::.Add(T)

Remarks

By default, this method will use the Insert method to add an element to the end of a collection. Override this method to provide different behaviour.

See Also