DataGridViewColumnCollection.Contains 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.
Determines whether the given column is in the collection.
Overloads
Contains(String) |
Determines whether the collection contains the column referred to by the given name. |
Contains(DataGridViewColumn) |
Determines whether the collection contains the given column. |
Contains(String)
Determines whether the collection contains the column referred to by the given name.
public:
virtual bool Contains(System::String ^ columnName);
public virtual bool Contains (string columnName);
abstract member Contains : string -> bool
override this.Contains : string -> bool
Public Overridable Function Contains (columnName As String) As Boolean
Parameters
- columnName
- String
The name of the column to look for.
Returns
true
if the column is contained in the collection; otherwise, false
.
Exceptions
columnName
is null
.
Remarks
The name of a column is indicated by the DataGridViewColumn.Name property.
See also
Applies to
Contains(DataGridViewColumn)
Determines whether the collection contains the given column.
public:
virtual bool Contains(System::Windows::Forms::DataGridViewColumn ^ dataGridViewColumn);
public virtual bool Contains (System.Windows.Forms.DataGridViewColumn dataGridViewColumn);
abstract member Contains : System.Windows.Forms.DataGridViewColumn -> bool
override this.Contains : System.Windows.Forms.DataGridViewColumn -> bool
Public Overridable Function Contains (dataGridViewColumn As DataGridViewColumn) As Boolean
Parameters
- dataGridViewColumn
- DataGridViewColumn
The DataGridViewColumn to look for.
Returns
true
if the given column is in the collection; otherwise, false
.