ListViewGroupCollection.Remove(ListViewGroup) 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 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.