MathElementBaseJoin Method (IMathElement) |
Joins a mathematical element and forms a mathematical block
Namespace:
Aspose.Slides.MathText
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.12.0.0 (20.12)
Syntaxpublic virtual IMathBlock Join(
IMathElement mathElement
)
Public Overridable Function Join (
mathElement As IMathElement
) As IMathBlock
public:
virtual IMathBlock^ Join(
IMathElement^ mathElement
)
abstract Join :
mathElement : IMathElement -> IMathBlock
override Join :
mathElement : IMathElement -> IMathBlock
Parameters
- mathElement
- Type: Aspose.Slides.MathTextIMathElement
The element to be joined
Return Value
Type:
IMathBlockA new IMathBlock containing this instance and specified argument
Implements
IMathElementJoin(IMathElement)
ExamplesExample:
[C#]
IMathElement element1 = new MathematicalText("x");
IMathElement element2 = new MathematicalText("y");
IMathBlock block = element1.Join(element2);
See Also