RowDefinitionCollection.RemoveAt(Int32) Method

Definition

Removes a RowDefinition from a RowDefinitionCollection at the specified index position.

public void RemoveAt (int index);

Parameters

index
Int32

The position within the collection at which the RowDefinition is removed.

Implements

Examples

The following example demonstrates how to use the RemoveAt method to remove a RowDefinition to a RowDefinitionCollection at a specific index position.

private void removeRow(object sender, RoutedEventArgs e)
{
    if (grid1.RowDefinitions.Count <= 0)
    {
        tp1.Text = "No More Rows to Remove!";
    }
    else
    {
        grid1.RowDefinitions.RemoveAt(0);
    }
}

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

Remarks

RowDefinitionCollection uses a zero-based indexing system.

Applies to

제품 버전
.NET Framework 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, 3.1, 5, 6, 7, 8, 9

See also