GridColumnStylesCollection::Remove Method (DataGridColumnStyle^)
.NET Framework (current version)
Removes the specified DataGridColumnStyle from the GridColumnStylesCollection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- column
-
Type:
System.Windows.Forms::DataGridColumnStyle^
The DataGridColumnStyle to remove from the collection.
Use the Contains method to determine whether the DataGridColumnStyle exists in the collection.
The following code example removes a DataGridColumnStyle from a GridColumnStylesCollection.
private: void RemoveColumnStyle_Clicked( Object^ /*sender*/, EventArgs^ /*e*/ ) { DataGridTableStyle^ myTableStyle = myDataGrid->TableStyles[ 0 ]; // Get the GridColumnStylesCollection of Data Grid. myColumns = myTableStyle->GridColumnStyles; int i; // Remove the CustName ColumnStyle from the data grid. if ( myColumns->Contains( "CustName" ) ) { DataGridColumnStyle^ myDataColumnStyle = myColumns[ "CustName" ]; i = myColumns->IndexOf( myDataColumnStyle ); myColumns->RemoveAt( i ); } }
.NET Framework
Available since 1.1
Available since 1.1
Show: