ModelItemCollection.Insert 메서드

정의

ModelItemCollection의 지정된 인덱스에 요소를 삽입합니다.

오버로드

Insert(Int32, ModelItem)

ModelItemCollection의 지정된 인덱스에 요소를 삽입합니다.

Insert(Int32, Object)

ModelItemCollection의 지정된 인덱스에 요소를 삽입합니다.

Insert(Int32, ModelItem)

ModelItemCollection의 지정된 인덱스에 요소를 삽입합니다.

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)

매개 변수

index
Int32

item을 삽입해야 하는 인덱스(0부터 시작)입니다.

item
ModelItem

삽입할 모델 항목입니다.

구현

적용 대상

Insert(Int32, Object)

ModelItemCollection의 지정된 인덱스에 요소를 삽입합니다.

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

매개 변수

index
Int32

value을 삽입해야 하는 인덱스(0부터 시작)입니다.

value
Object

삽입할 개체입니다.

반환

ModelItem

value에 래핑된 ModelItem를 반환합니다.

적용 대상