MathPortion()

MathPortion::MathPortion() constructor

Initializes a new instance of the MathPortion class.

Aspose::Slides::MathText::MathPortion::MathPortion()

Remarks

Example:

auto pres = System::MakeObject<Presentation>();
auto shape = pres->get_Slides()->idx_get(0)->get_Shapes()->AddMathShape(0.0f, 0.0f, 300.0f, 50.0f);
auto paragraph = shape->get_TextFrame()->get_Paragraphs()->idx_get(0);
auto mathPortion = System::MakeObject<MathPortion>();
paragraph->get_Portions()->Add(mathPortion);

See Also