RemoveAt

IMathBlockCollection.RemoveAt method

Entfernt ein Element am angegebenen Index der Sammlung.

public void RemoveAt(int index)
ParameterTypBeschreibung
indexInt32Der nullbasierte Index des zu entfernenden Elements.

Beispiele

Beispiel:

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

Siehe auch