Add

IMathBlockCollection.Add method

Adds IMathBlock to the end of collection.

public void Add(IMathBlock item)
ParameterTypeDescription
itemIMathBlockA mathematical block that will be added to the end of the collection

Examples

Example:

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

See Also