get_DelimiterShape()

MathDelimiter::get_DelimiterShape() method

Specifies the shape of delimiters in the delimiter object. When is MathDelimiterShape::Centered, delimiters are centered around the math axis of the mathematical text and still be made to fit the entire height of their contents. When is MathDelimiterShape::Match, their height and shape are altered to exactly match their contents.

MathDelimiterShape Aspose::Slides::MathText::MathDelimiter::get_DelimiterShape() override

Remarks

Example:

auto delimiter = System::MakeObject<MathematicalText>(u"x")->Divide(u"y")->Enclose();
delimiter->set_DelimiterShape(MathDelimiterShape::Match);

See Also