RowDefinitionCollection.RemoveAt(Int32) Método

Definição

Remove um RowDefinition de um RowDefinitionCollection na posição de índice especificada.

public:
 virtual void RemoveAt(int index);
public void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

Parâmetros

index
Int32

A posição dentro da coleção na qual o RowDefinition é removido.

Implementações

Exemplos

O exemplo a seguir demonstra como usar o RemoveAt método para remover um RowDefinition para um RowDefinitionCollection em uma posição específica index .

private void removeRow(object sender, RoutedEventArgs e)
{
    if (grid1.RowDefinitions.Count <= 0)
    {
        tp1.Text = "No More Rows to Remove!";
    }
    else
    {
        grid1.RowDefinitions.RemoveAt(0);
    }
}
Private Sub removeRow(ByVal sender As Object, ByVal e As RoutedEventArgs)
    If (grid1.RowDefinitions.Count <= 0) Then
        tp1.Text = "No More Rows to Remove!"
    Else
        grid1.RowDefinitions.RemoveAt(0)
    End If
End Sub

Para exibir o exemplo completo, consulte Como manipular colunas e linhas usando ColumnDefinitionsCollections e RowDefinitionsCollections.

Comentários

RowDefinitionCollection usa um sistema de indexação baseado em zero.

Aplica-se a

Confira também