ListBox.IntegerCollection.AddRange Metoda

Definice

Přidá do kolekce skupinu celých čísel.

Přetížení

Name Description
AddRange(Int32[])

Přidá do kolekce pole celých čísel.

AddRange(ListBox+IntegerCollection)

Přidá obsah existující ListBox.IntegerCollection kolekce.

AddRange(Int32[])

Zdroj:
ListBox.IntegerCollection.cs
Zdroj:
ListBox.IntegerCollection.cs
Zdroj:
ListBox.IntegerCollection.cs
Zdroj:
ListBox.IntegerCollection.cs
Zdroj:
ListBox.IntegerCollection.cs

Přidá do kolekce pole celých čísel.

public:
 void AddRange(cli::array <int> ^ items);
public:
 void AddRange(... cli::array <int> ^ items);
public void AddRange(int[] items);
public void AddRange(params int[] items);
member this.AddRange : int[] -> unit
Public Sub AddRange (items As Integer())
Public Sub AddRange (ParamArray items As Integer())

Parametry

items
Int32[]

Pole celých čísel, která se mají přidat do kolekce.

Poznámky

Pole celých čísel se připojí k kolekci a duplicity se z kolekce odeberou.

Platí pro

AddRange(ListBox+IntegerCollection)

Zdroj:
ListBox.IntegerCollection.cs
Zdroj:
ListBox.IntegerCollection.cs
Zdroj:
ListBox.IntegerCollection.cs
Zdroj:
ListBox.IntegerCollection.cs
Zdroj:
ListBox.IntegerCollection.cs

Přidá obsah existující ListBox.IntegerCollection kolekce.

public:
 void AddRange(System::Windows::Forms::ListBox::IntegerCollection ^ value);
public void AddRange(System.Windows.Forms.ListBox.IntegerCollection value);
member this.AddRange : System.Windows.Forms.ListBox.IntegerCollection -> unit
Public Sub AddRange (value As ListBox.IntegerCollection)

Parametry

value
ListBox.IntegerCollection

Přidání ListBox.IntegerCollection do jiné kolekce

Poznámky

Obsah existující ListBox.IntegerCollection kolekce se připojí k aktuální kolekci a duplicitní položky se z kombinované kolekce odeberou.

Platí pro