RemoveAt

IMathBlockCollection.RemoveAt method

Elimina un elemento en el índice especificado de la colección.

public void RemoveAt(int index)
ParámetroEscribeDescripción
indexInt32El índice de base cero del elemento que se va a quitar.

Ejemplos

Ejemplo:

[C#]
IMathBlockCollection blockCollection = new MathParagraph();
IMathBlock block = new MathBlock(new MathematicalText("y"));
blockCollection.Add(block);
blockCollection.RemoveAt(0);

Ver también