RowDefinitionCollection::Insert Method (Int32, RowDefinition^)

 

Inserts a RowDefinition at the specified index position within a RowDefinitionCollection.

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

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

Parameters

index
Type: System::Int32

The position within the collection where the item is inserted.

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

The RowDefinition to insert.

Exception Condition
ArgumentOutOfRangeException

index is not a valid index in the IList.

RowDefinitionCollection uses a zero-based indexing system.

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

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: