SetLowerLimit()

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

Takes lower limit

virtual System::SharedPtr<IMathLimit> Aspose::Slides::MathText::IMathElement::SetLowerLimit(System::SharedPtr<IMathElement> limit)=0

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);

IMathElement::SetLowerLimit(System::String) method

Takes lower limit

virtual System::SharedPtr<IMathLimit> Aspose::Slides::MathText::IMathElement::SetLowerLimit(System::String limit)=0

Arguments

ParameterTypeDescription
limitSystem::Stringlimit

Return Value

New instance of type IMathLimit

Remarks

Example:

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

See Also