set_EndingCharacter()

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

virtual void Aspose::Slides::MathText::IMathDelimiter::set_EndingCharacter(char16_t value)=0

Remarks

Example:

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

See Also