Enclose
Contents
[
Hide
]Enclose()
Encloses a math element in parenthesis
public IMathDelimiter Enclose()
Return Value
The math element of type IMathDelimiter
which includes the parenthesis
Examples
Example:
[C#]
IMathElement element = new MathematicalText("x");
IMathDelimiter delimiter = element.Enclose();
See Also
- interface IMathDelimiter
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Enclose(char, char)
Encloses this element in specified characters such as parenthesis or another characters as framing
public IMathDelimiter Enclose(char beginningCharacter, char endingCharacter)
Parameter | Type | Description |
---|---|---|
beginningCharacter | Char | Beginning character (usually left bracket) |
endingCharacter | Char | Ending character (usually right bracket) |
Return Value
The math element of type IMathDelimiter
which includes specified characters as framing
Examples
Example:
[C#]
IMathElement element = new MathematicalText("x");
IMathDelimiter delimiter = element.Enclose('[', ']');
See Also
- interface IMathDelimiter
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides