MathDelimiter()

MathDelimiter::MathDelimiter(System::SharedPtr<IMathElement>) constructor

Initializes MathDelimiter with the specified element as single base argument

Aspose::Slides::MathText::MathDelimiter::MathDelimiter(System::SharedPtr<IMathElement> element)

Arguments

ParameterTypeDescription
elementSystem::SharedPtr<IMathElement>The base element to which the delimiter is applied. Can be null.

Remarks

Example:

auto element = System::MakeObject<MathematicalText>(u"x");
auto delimiter = System::MakeObject<MathDelimiter>(element);

See Also