RemoveAt

ShapeCollection.RemoveAt method

Eliminar la forma.

public void RemoveAt(int index)
ParámetroEscribeDescripción
indexInt32El índice de la forma.

Ejemplos


[C#]
//añadir primera forma
shapes.AddRectangle(2, 0, 2, 0, 50, 50);
//añadir segunda forma
shapes.AddRectangle(6, 0, 2, 0, 30, 30);

//retirar 
shapes.RemoveAt(0);

Ver también