ModelItemCollection.Insert 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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
삽입할 개체입니다.
반환
value
에 래핑된 ModelItem를 반환합니다.