This documentation is for the old version. Go to the latest Graphics Mill docs

Collection<T>.Insert Method

Inserts an item into the Collection<T> at the specified index.

Namespace: Aurigma.GraphicsMill.AjaxControls.VectorObjects
Assembly: Aurigma.GraphicsMill.AjaxControls.VectorObjects (in Aurigma.GraphicsMill.AjaxControls.VectorObjects.dll)

Syntax

Visual Basic
Public Overridable Sub Insert ( _
	index As Integer, _
	item As T _
)
C#
public virtual void Insert(
	int index,
	T item
)

Parameters

index

Type: System.Int32

The zero-based index at which item should be inserted.
item

Type: T

The item to insert.

See Also

Reference