GridColumnStylesCollection::Remove Method (DataGridColumnStyle^)

 

Removes the specified DataGridColumnStyle from the GridColumnStylesCollection.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void Remove(
	DataGridColumnStyle^ column
)

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
Return to top
Show: