get_EndingCharacter()

IMathDelimiter::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: ‘)’.

virtual char16_t Aspose::Slides::MathText::IMathDelimiter::get_EndingCharacter()=0

Remarks

Example:

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

See Also