Join
Contents
[
Hide
]Join(IMathElement)
Joins a mathematical element and forms a mathematical block
public virtual IMathBlock Join(IMathElement mathElement)
Parameter | Type | Description |
---|---|---|
mathElement | IMathElement | The element to be joined |
Return Value
A new IMathBlock containing this instance and specified argument
Examples
Example:
[C#]
IMathElement element1 = new MathematicalText("x");
IMathElement element2 = new MathematicalText("y");
IMathBlock block = element1.Join(element2);
See Also
- interface IMathBlock
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Join(string)
Joins a mathematical text and forms a mathematical block
public virtual IMathBlock Join(string mathText)
Parameter | Type | Description |
---|---|---|
mathText | String | Mathematical text to be joined |
Return Value
A new IMathBlock containing this instance and specified argument
Examples
Example:
[C#]
IMathElement element = new MathematicalText("x");
IMathBlock block = element.Join("+y");
See Also
- interface IMathBlock
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides