ListView.ColumnHeaderCollection.Remove(ColumnHeader) Method

Definition

Removes the specified column header from the collection.

public:
 virtual void Remove(System::Windows::Forms::ColumnHeader ^ column);
public virtual void Remove (System.Windows.Forms.ColumnHeader column);
abstract member Remove : System.Windows.Forms.ColumnHeader -> unit
override this.Remove : System.Windows.Forms.ColumnHeader -> unit
Public Overridable Sub Remove (column As ColumnHeader)

Parameters

column
ColumnHeader

A ColumnHeader representing the column header to remove from the collection.

Remarks

When you remove a column header from the collection, the indexes change for subsequent column headers in the collection. All information about the removed column header is deleted. You can use this method to remove a specific column header from the collection by specifying the actual ColumnHeader to remove. To specify the index of the column header to remove instead of the column header itself, use the RemoveAt method. To remove all column headers from the collection, use the Clear method.

Applies to

See also