get_EndingCharacter()

MathDelimiter::get_EndingCharacter() method

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

char16_t Aspose::Slides::MathText::MathDelimiter::get_EndingCharacter() override

Remarks

Example:

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

See Also