Freigeben über


ListItemCollection.AddRange-Methode

Fügt der Auflistung die Elemente eines Arrays von ListItem-Objekten hinzu.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

Syntax

'Declaration
Public Sub AddRange ( _
    items As ListItem() _
)
'Usage
Dim instance As ListItemCollection
Dim items As ListItem()

instance.AddRange(items)
public void AddRange (
    ListItem[] items
)
public:
void AddRange (
    array<ListItem^>^ items
)
public void AddRange (
    ListItem[] items
)
public function AddRange (
    items : ListItem[]
)

Parameter

  • items
    Ein Array von ListItem-Objekten, die die der Auflistung hinzuzufügenden Elemente enthalten.

Hinweise

Mithilfe der AddRange-Methode können Sie die Elemente des Arrays von ListItem-Objekten hinzufügen, die durch den items-Parameter angegeben sind. Auf diese Weise können Sie der Auflistung in einem einzigen Schritt mehrere ListItem-Objekte hinzufügen.

Beispiel

Dim MyListItemCollection As ListItemCollection = New ListItemCollection()

' Dimensions an array of ListItems that are used to populate the collection.    
Dim NewListItemArray(TempDataTable.Count - 1) As System.Web.UI.WebControls.ListItem

' Populates the array of ListItems with generic data.
Dim i As Integer
For i = 0 To TempDataTable.Count - 1
    NewListItemArray(i) = New ListItem()
    NewListItemArray(i).Text = "Item " + i.ToString()
    NewListItemArray(i).Value = i.ToString()
Next

' Adds an entire array of ListItem objects to the collection.
MyListItemCollection.AddRange(NewListItemArray)
ListItemCollection myListItemCollection = new ListItemCollection();

// Creates an array of ListItems that are used to populate the collection.    
System.Web.UI.WebControls.ListItem[] newListItemArray = new ListItem[tempDataTable.Count];

// Populates the array of ListItems with generic data.
for (int i=0; i < tempDataTable.Count; i++) {
    newListItemArray[i] = new ListItem();
    newListItemArray[i].Text = "Item " + i.ToString();
    newListItemArray[i].Value = i.ToString();
}

// Adds an entire array of ListItem objects to the collection.
myListItemCollection.AddRange(newListItemArray);
ListItemCollection myListItemCollection = new ListItemCollection();
// Creates an array of ListItems that are used to populate
// the collection.    
System.Web.UI.WebControls.ListItem newListItemArray[] = 
    new ListItem[tempDataTable.get_Count()];
// Populates the array of ListItems with generic data.
for (int i = 0; i < tempDataTable.get_Count(); i++) {
    newListItemArray.set_Item(i, new ListItem());
    newListItemArray[i].set_Text("Item " + Convert.ToString(i));
    newListItemArray[i].set_Text("Item " + Convert.ToString(i));
    newListItemArray[i].set_Value(Convert.ToString(i));
}
// Adds an entire array of ListItem objects to the collection.
myListItemCollection.AddRange(newListItemArray);

Plattformen

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

ListItemCollection-Klasse
ListItemCollection-Member
System.Web.UI.WebControls-Namespace
ListItem-Klasse
Add
Insert
Remove
RemoveAt
Clear