MathSubscriptElement()

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

Initializes a new instance of the MathSubscriptElement class.

Aspose::Slides::MathText::MathSubscriptElement::MathSubscriptElement(System::SharedPtr<IMathElement> baseArg, System::SharedPtr<IMathElement> subScript)

Remarks

Example:

System::SharedPtr<IMathElement> baseElement = System::MakeObject<MathematicalText>(u"X");
System::SharedPtr<IMathElement> subscript = System::MakeObject<MathematicalText>(u"i");
auto subscriptElement = System::MakeObject<MathSubscriptElement>(baseElement, subscript);

See Also