ListBox.ObjectCollection.Remove(Object) Method

Definition

Removes the specified object from the collection.

public:
 virtual void Remove(System::Object ^ value);
public:
 void Remove(System::Object ^ value);
public void Remove (object value);
abstract member Remove : obj -> unit
override this.Remove : obj -> unit
member this.Remove : obj -> unit
Public Sub Remove (value As Object)

Parameters

value
Object

An object representing the item to remove from the collection.

Implements

Remarks

When you remove an item from the list, the indexes change for subsequent items in the list. All information about the removed item is deleted. You can use this 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 item to remove instead of the item itself, use the RemoveAt method. To remove all items from the list, use the Clear method.

Applies to

See also