Clear

IMathBlockCollection.Clear method

Entfernt alle Elemente aus der Sammlung.

public void Clear()

Beispiele

Beispiel:

[C#]
IMathBlockCollection blockCollection = new MathParagraph();
blockCollection.Add(new MathBlock(new MathematicalText("block1")));
blockCollection.Add(new MathBlock(new MathematicalText("block2")));
blockCollection.Clear();

Siehe auch