RowDefinitionCollection.RemoveRange(Int32, Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Supprime une plage d'objets RowDefinition d'un 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)
Paramètres
- index
- Int32
Position dans la collection à laquelle le premier RowDefinition est supprimé.
- count
- Int32
Nombre total d'objets RowDefinition à supprimer de la collection.
Exemples
L’exemple suivant montre comment utiliser la RemoveRange méthode pour supprimer une plage d’éléments RowDefinition d’un 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
Pour afficher l’exemple complet, consultez Guide pratique pour manipuler des colonnes et des lignes à l’aide de ColumnDefinitionsCollections et rowDefinitionsCollections.
Remarques
RowDefinitionCollection utilise un système d’indexation basé sur zéro.