ListBox.IntegerCollection.Remove(Int32) Method

Definition

Removes the specified integer from the ListBox.IntegerCollection.

public:
 void Remove(int item);
public void Remove (int item);
member this.Remove : int -> unit
Public Sub Remove (item As Integer)

Parameters

item
Int32

The integer to remove from the ListBox.IntegerCollection.

Remarks

When you remove an integer from the ListBox.IntegerCollection, the indexes change for subsequent integers in the collection. All information about the removed integer is deleted. You can use the Remove method to remove a specific item from the list by specifying the actual item to remove from the list. To specify the index of the integer to remove instead of the integer itself, use the RemoveAt method.

If the integer is not in the ListBox.IntegerCollection, this method does nothing.

Applies to