set_EndingCharacter()

MathDelimiter::set_EndingCharacter(char16_t) method

Delimiter Ending Character specifies the ending, or closing, delimiter character. Mathematical delimiters are enclosing characters such as parentheses, brackets, and braces. The default: ‘)’.

void Aspose::Slides::MathText::MathDelimiter::set_EndingCharacter(char16_t value) override

Remarks

Example:

auto delimiter = System::ExplicitCast<IMathElement>(System::MakeObject<MathematicalText>(u"x")->Join(u"y"))->Enclose();
delimiter->set_EndingCharacter(u']');

See Also