ColumnDefinitionCollection::Insert Method (Int32, ColumnDefinition^)

 

Inserts a ColumnDefinition at the specified index position within a ColumnDefinitionCollection.

Namespace:   System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
virtual void Insert(
	int index,
	ColumnDefinition^ value
) sealed

Parameters

index
Type: System::Int32

The position within the collection where the item is inserted.

value
Type: System.Windows.Controls::ColumnDefinition^

The ColumnDefinition to insert.

Exception Condition
ArgumentOutOfRangeException

index is not a valid index in the IList.

ColumnDefinitionCollection uses a zero-based indexing system.

The following example demonstrates how to use the Insert method to insert a ColumnDefinition to a specific index position within a ColumnDefinitionCollection.

No code example is currently available or this language may not be supported.

To view the complete sample, see How to: Manipulate Columns and Rows by Using ColumnDefinitionsCollections and RowDefinitionsCollections.

.NET Framework
Available since 3.0
Return to top
Show: