Inserts a new value in the collection.

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

Syntax

C#
public override void Insert(
	int index,
	double element
)
Visual Basic
Public Overrides Sub Insert ( _
	index As Integer, _
	element As Double _
)

Parameters

index
Type: System..::..Int32
The index at which the element will be inserted.
element
Type: System..::..Double
The new value.

Implements

IList<(Of <(<'T>)>)>..::..Insert(Int32, T)

Remarks

The new value must be bigger than the preceeding element and smaller than the next element.

See Also