CurrencyManager.RemoveAt(Int32) Método

Definición

Quita el elemento del índice especificado.

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

Parámetros

index
Int32

Índice del elemento que se va a quitar de la lista.

Excepciones

No hay ninguna fila en el índice especificado index.

Ejemplos

En el ejemplo de código siguiente se usa el RemoveAt método para quitar el elemento en la posición 0 de la lista.

void RemoveFromList()
{
   
   // Get the CurrencyManager of a TextBox control.
   CurrencyManager^ myCurrencyManager = dynamic_cast<CurrencyManager^>(textBox1->BindingContext[nullptr]);
   
   // If the count is 0, exit the function.
   if ( myCurrencyManager->Count > 1 )
         myCurrencyManager->RemoveAt( 0 );
}
private void RemoveFromList(){
    // Get the CurrencyManager of a TextBox control.
    CurrencyManager myCurrencyManager = (CurrencyManager)textBox1.BindingContext[0];
    // If the count is 0, exit the function.
    if(myCurrencyManager.Count > 1)
    myCurrencyManager.RemoveAt(0);
}
Private Sub RemoveFromList()
    ' Get the CurrencyManager of a TextBox control.
    Dim myCurrencyManager As CurrencyManager = CType(textBox1.BindingContext(0), CurrencyManager)
    ' If the count is 0, exit the function.
    If myCurrencyManager.Count > 1 Then
        myCurrencyManager.RemoveAt(0)
    End If
    
End Sub

Comentarios

El RemoveAt método se diseñó para permitir controles complejos, como el DataGrid control, quitar elementos de la lista. No debe usar este método para quitar realmente los elementos. En su lugar, use el Delete método de la DataView clase para eliminar elementos.

Se aplica a

Consulte también