ModelItemCollection.Insert Method

Definition

Inserts an element into the ModelItemCollection at the specified index.

Overloads

Insert(Int32, ModelItem)

Inserts an element into the ModelItemCollection at the specified index.

Insert(Int32, Object)

Inserts an element into the ModelItemCollection at the specified index.

Insert(Int32, ModelItem)

Inserts an element into the ModelItemCollection at the specified index.

public:
 abstract void Insert(int index, System::Activities::Presentation::Model::ModelItem ^ item);
public abstract void Insert (int index, System.Activities.Presentation.Model.ModelItem item);
abstract member Insert : int * System.Activities.Presentation.Model.ModelItem -> unit
Public MustOverride Sub Insert (index As Integer, item As ModelItem)

Parameters

index
Int32

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

item
ModelItem

The model item to insert.

Implements

Applies to

Insert(Int32, Object)

Inserts an element into the ModelItemCollection at the specified index.

public:
 abstract System::Activities::Presentation::Model::ModelItem ^ Insert(int index, System::Object ^ value);
public abstract System.Activities.Presentation.Model.ModelItem Insert (int index, object value);
abstract member Insert : int * obj -> System.Activities.Presentation.Model.ModelItem
Public MustOverride Function Insert (index As Integer, value As Object) As ModelItem

Parameters

index
Int32

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

value
Object

The object to insert.

Returns

Returns value wrapped in a ModelItem.

Applies to