ColumnDefinitionCollection.RemoveRange(Int32, Int32) Metoda

Definicja

Usuwa zakres ColumnDefinition obiektów z obiektu ColumnDefinitionCollection.

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 ColumnDefinition jest usuwany.

count
Int32

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

Przykłady

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

private void rem5Col(object sender, RoutedEventArgs e)
{
    if (grid1.ColumnDefinitions.Count < 5)
    {
        tp1.Text = "There aren't five Columns to Remove!";
    }
    else
    {
        grid1.ColumnDefinitions.RemoveRange(0,5);
    }
}
Private Sub rem5Col(ByVal sender As Object, ByVal e As RoutedEventArgs)
    If (grid1.ColumnDefinitions.Count < 5) Then
        tp1.Text = "There aren't five Columns to Remove!"
    Else
        grid1.ColumnDefinitions.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

ColumnDefinitionCollection używa systemu indeksowania opartego na zera.

Dotyczy

Zobacz też