Inserts the specified Action 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,
	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.ImageDraw..::.Action
The Action to add to the collection.

See Also