ListViewGroupCollection.Remove(ListViewGroup) Method

Definition

Removes the specified ListViewGroup from the collection.

public:
 void Remove(System::Windows::Forms::ListViewGroup ^ group);
public void Remove (System.Windows.Forms.ListViewGroup group);
member this.Remove : System.Windows.Forms.ListViewGroup -> unit
Public Sub Remove (group As ListViewGroup)

Parameters

group
ListViewGroup

The ListViewGroup to remove from the collection.

Remarks

Use this method to remove a group from the collection when you have a reference to the group. Note that removing a group from the ListView.Groups collection does not remove items from the ListView control.

To remove a group at a particular index, use the RemoveAt method instead. To remove all the groups from the collection, use the Clear method.

Applies to

See also