GridColumnStylesCollection.Clear Method

Definition

Clears the collection of DataGridColumnStyle objects.

C#
public void Clear();

Examples

The following code example demonstrates the use of this member.

C#
private void Clear_Clicked(object sender, System.EventArgs e)
{
   // TablesAlreadyAdded set to false so that table styles can be added again.
   TablesAlreadyAdded = false;
   myLabel.Text = "All Table Styles Cleared.";
   // Clear all the column styles and also table style for the grid.
   foreach (DataGridTableStyle myTableStyle in myDataGrid.TableStyles)
   {
      GridColumnStylesCollection myColumns = myTableStyle.GridColumnStyles;
      myColumns.Clear();
   }
   myDataGrid.TableStyles.Clear();
}

Applies to

Продукт Версії
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 10

See also