다음을 통해 공유


ListItemCollection.Insert 메서드

정의

컬렉션의 지정된 인덱스 위치에 ListItem을 삽입합니다.

오버로드

Insert(Int32, String)

컬렉션의 지정된 인덱스 위치에 있는 특정 문자열을 나타내는 ListItem을 삽입합니다.

Insert(Int32, ListItem)

지정된 ListItem을 컬렉션의 지정된 인덱스 위치에 삽입합니다.

Insert(Int32, String)

컬렉션의 지정된 인덱스 위치에 있는 특정 문자열을 나타내는 ListItem을 삽입합니다.

public:
 void Insert(int index, System::String ^ item);
public void Insert (int index, string item);
member this.Insert : int * string -> unit
Public Sub Insert (index As Integer, item As String)

매개 변수

index
Int32

ListItem을 삽입할 컬렉션의 위치입니다.

item
String

컬렉션에 삽입할 항목을 나타내는 String입니다.

설명

메서드를 Insert 사용하여 매개 변수로 ListItem 지정된 인덱스에서 컬렉션에 index 추가합니다. 이 메서드 구현은 매개 변수로 지정된 텍스트를 나타내는 메서드를 item 만듭니다ListItem. TextListItem 속성의 값item이 있고 속성에 Valuenull이 있습니다. 그런 ListItem 다음 컬렉션에서 지정된 인덱스로 삽입됩니다.

추가 정보

적용 대상

Insert(Int32, ListItem)

지정된 ListItem을 컬렉션의 지정된 인덱스 위치에 삽입합니다.

public:
 void Insert(int index, System::Web::UI::WebControls::ListItem ^ item);
public void Insert (int index, System.Web.UI.WebControls.ListItem item);
member this.Insert : int * System.Web.UI.WebControls.ListItem -> unit
Public Sub Insert (index As Integer, item As ListItem)

매개 변수

index
Int32

ListItem을 삽입할 컬렉션의 위치입니다.

item
ListItem

컬렉션에 추가할 ListItem입니다.

설명

메서드를 Insert 사용하여 매개 변수로 ListItem 지정된 인덱스에서 컬렉션에 index 추가합니다. 이 메서드 구현은 매개 변수에서 ListItem 지정한 item 값을 가져와 컬렉션의 지정된 인덱스에 삽입합니다.

추가 정보

적용 대상