Inserts the specified Element in the collection at the specified index location.

Namespace:  Neodynamic.SDK.ImageDraw
Assembly:  Neodynamic.SDK.ImageDraw (in Neodynamic.SDK.ImageDraw.dll) Version: 3.0.2000.0 (3.0.2000.0)

Syntax

C#
public void Insert(
	int index,
	Element element
)
Visual Basic (Declaration)
Public Sub Insert ( _
	index As Integer, _
	element As Element _
)
Visual C++
public:
void Insert(
	int index, 
	Element^ element
)

Parameters

index
Type: System..::.Int32
The location in the collection to insert the Element.
element
Type: Neodynamic.SDK.ImageDraw..::.Element
The Element to add to the collection.

See Also