RowDefinitionCollection.RemoveRange(Int32, Int32) Metoda

Definicja

Usuwa zakres RowDefinition obiektów z obiektu RowDefinitionCollection.

public:
 void RemoveRange(int index, int count);
public void RemoveRange (int index, int count);
member this.RemoveRange : int * int -> unit
Public Sub RemoveRange (index As Integer, count As Integer)

Parametry

index
Int32

Pozycja w kolekcji, w której pierwszy RowDefinition jest usuwany.

count
Int32

Całkowita liczba RowDefinition obiektów do usunięcia z kolekcji.

Przykłady

W poniższym przykładzie pokazano, jak za pomocą RemoveRange metody usunąć zakres RowDefinition elementów z klasy RowDefinitionCollection.

private void rem5Row(object sender, RoutedEventArgs e)
{
    if (grid1.RowDefinitions.Count < 5)
    {
        tp1.Text = "There aren't five Rows to Remove!";
    }
    else
    {
        grid1.RowDefinitions.RemoveRange(0, 5);
    }
}
Private Sub rem5Row(ByVal sender As Object, ByVal e As RoutedEventArgs)
    If (grid1.RowDefinitions.Count < 5) Then
        tp1.Text = "There aren't five Rows to Remove!"
    Else
        grid1.RowDefinitions.RemoveRange(0, 5)
    End If
End Sub

Aby wyświetlić kompletny przykład, zobacz How to: Manipulate Columns and Rows by Using ColumnDefinitionsCollections and RowDefinitionsCollections (Instrukcje: manipulowanie kolumnami i wierszami przy użyciu kolekcji ColumnDefinitionsCollections i RowDefinitionsCollections).

Uwagi

RowDefinitionCollection używa systemu indeksowania opartego na zera.

Dotyczy

Zobacz też