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

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

Syntax

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

Parameters

index
Type: System..::.Int32
The location in the collection to insert the Action.
action
Type: Neodynamic.SDK..::.Action
The Action to add to the collection.

See Also