Add
MathBlock.Add method
Adds a math element to the end of the collection.
public void Add(IMathElement item)
Parameter | Type | Description |
---|---|---|
item | IMathElement | The IMathElement to be added to the end of the collection. |
Examples
Example:
[C#]
MathBlock mathBlock = new MathBlock(new MathematicalText("x"));
mathBlock.Add(new MathematicalText("+"));
mathBlock.Add(new MathRadical(new MathematicalText("x"), new MathematicalText("3")));
See Also
- interface IMathElement
- class MathBlock
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides