TableColumnCollection.Clear Method
Clears all items from the collection.
Namespace: System.Windows.Documents
Assembly: PresentationFramework (in PresentationFramework.dll)
After calling Clear, the value of the Count property becomes 0 and the value of the Capacity property is unchanged. To set a new capacity, call TrimToSize or explicitly set a new capacity through the Capacity property.
This example demonstrates some of the more common operations that can be performed on a table's columns through the Columns property.
The following example creates a new table and then uses the Add method to add columns to the table's Columns collection.
The following example inserts a new TableColumn. The new column is inserted at index position 0, making it the new first column in the table.
Note |
|---|
The TableColumnCollection collection uses standard zero-based indexing. |
The following example accesses some arbitrary properties on columns in the TableColumnCollection collection, referring to particular columns by index.
The following example gets the number of columns currently hosted by the table.
The following example removes a particular column by reference.
The following example removes a particular column by index.
The following example removes all columns from the table's columns collection.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note