Add

IMathBlockCollection.Add method

Fügt IMathBlock am Ende der Sammlung hinzu.

public void Add(IMathBlock item)
ParameterTypBeschreibung
itemIMathBlockEin mathematischer Block, der am Ende der Sammlung hinzugefügt wird

Beispiele

Beispiel:

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

Siehe auch