SetSubSuperscriptOnTheLeft()

IMathElement::SetSubSuperscriptOnTheLeft(System::SharedPtr<IMathElement>, System::SharedPtr<IMathElement>) method

Creates subscript and superscript on the left

virtual System::SharedPtr<IMathLeftSubSuperscriptElement> Aspose::Slides::MathText::IMathElement::SetSubSuperscriptOnTheLeft(System::SharedPtr<IMathElement> subscript, System::SharedPtr<IMathElement> superscript)=0

Arguments

ParameterTypeDescription
subscriptSystem::SharedPtr<IMathElement>Subscript (lower index on the left)
superscriptSystem::SharedPtr<IMathElement>Superscript (upper index on the left)

Return Value

New math element of type IMathLeftSubSuperscriptElement

Remarks

Example:

auto baseElement = System::MakeObject<MathematicalText>(u"N");
auto subscript = System::MakeObject<MathematicalText>(u"i");
auto superscript = System::MakeObject<MathematicalText>(u"j");
auto leftSubsuperscript = baseElement->SetSubSuperscriptOnTheLeft(subscript, superscript);

IMathElement::SetSubSuperscriptOnTheLeft(System::String, System::String) method

Creates subscript and superscript on the left

virtual System::SharedPtr<IMathLeftSubSuperscriptElement> Aspose::Slides::MathText::IMathElement::SetSubSuperscriptOnTheLeft(System::String subscript, System::String superscript)=0

Arguments

ParameterTypeDescription
subscriptSystem::StringSubscript (lower index on the left)
superscriptSystem::StringSuperscript (upper index on the left)

Return Value

New math element of type IMathLeftSubSuperscriptElement

Remarks

Example:

auto baseElement = System::MakeObject<MathematicalText>(u"N");
auto leftSubsuperscript = baseElement->SetSubSuperscriptOnTheLeft(u"i", u"j");

See Also