SetLowerLimit()

MathElementBase::SetLowerLimit(System::SharedPtr<IMathElement>) method

Takes lower limit

System::SharedPtr<IMathLimit> Aspose::Slides::MathText::MathElementBase::SetLowerLimit(System::SharedPtr<IMathElement> limit) override

Arguments

ParameterTypeDescription
limitSystem::SharedPtr<IMathElement>limit

Return Value

New instance of type IMathLimit

Remarks

Example:

auto baseElement = System::MakeObject<MathematicalText>(u"lim");
auto limitValue = System::MakeObject<MathematicalText>(u"\U0001d45b→∞");
auto limitElement = baseElement->SetLowerLimit(limitValue);

MathElementBase::SetLowerLimit(System::String) method

Takes lower limit

System::SharedPtr<IMathLimit> Aspose::Slides::MathText::MathElementBase::SetLowerLimit(System::String limit) override

Arguments

ParameterTypeDescription
limitSystem::Stringlimit

Return Value

New instance of type IMathLimit

Remarks

Example:

auto baseElement = System::MakeObject<MathematicalText>(u"lim");
auto limitElement = baseElement->SetLowerLimit(u"\U0001d45b→∞");

See Also