MathLimit()

MathLimit::MathLimit(System::SharedPtr<IMathElement>, System::SharedPtr<IMathElement>, bool) constructor

Initializes a new instance of the MathLimit class.

Aspose::Slides::MathText::MathLimit::MathLimit(System::SharedPtr<IMathElement> baseArg, System::SharedPtr<IMathElement> limit, bool upperLimit)

Remarks

Example:

auto limitElement = System::MakeObject<MathLimit>(System::MakeObject<MathematicalText>(u"lim"), System::MakeObject<MathematicalText>(u"\U0001d45b→∞"), false);

MathLimit::MathLimit(System::SharedPtr<IMathElement>, System::SharedPtr<IMathElement>) constructor

Initializes a new instance of the MathLimit class with lower limit

Aspose::Slides::MathText::MathLimit::MathLimit(System::SharedPtr<IMathElement> baseArg, System::SharedPtr<IMathElement> limit)

Remarks

Example:

auto limitElement = System::MakeObject<MathLimit>(System::MakeObject<MathematicalText>(u"lim"), System::MakeObject<MathematicalText>(u"\U0001d45b→∞"));

See Also