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

XmpArrayNode.Insert Method

Inserts an item to the array at the specified position.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub Insert ( _
	index As Integer, _
	node As Object _
)
C#
public void Insert(
	int index,
	Object node
)

Parameters

index

Type: System.Int32

Zero-based index at which value should be inserted.
node

Type: System.Object

Object to insert.

Remarks

If index equals the number of items in the array, then value is appended to the end.

See Also

Reference