ListView.ColumnHeaderCollection.Contains(ColumnHeader) Method

Definition

Determines whether the specified column header is located in the collection.

public:
 bool Contains(System::Windows::Forms::ColumnHeader ^ value);
public bool Contains (System.Windows.Forms.ColumnHeader value);
member this.Contains : System.Windows.Forms.ColumnHeader -> bool
Public Function Contains (value As ColumnHeader) As Boolean

Parameters

value
ColumnHeader

A ColumnHeader representing the column header to locate in the collection.

Returns

true if the column header is contained in the collection; otherwise, false.

Remarks

The Contains method enables you to determine whether a ColumnHeader is a member of the collection. Once you know that the column header is in the collection, you can use the IndexOf method to determine the position of the column header in the collection.

Applies to

See also