ListBox.IntegerCollection.Remove(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.