MathFunction()

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

Initializes a new instance of the MathFunction class.

Aspose::Slides::MathText::MathFunction::MathFunction(System::SharedPtr<IMathElement> funcName, System::SharedPtr<IMathElement> baseArgument)

Remarks

Example:

auto func = System::MakeObject<MathFunction>(System::MakeObject<MathematicalText>(u"sin"), System::MakeObject<MathematicalText>(u"x"));

MathFunction::MathFunction(System::String, System::SharedPtr<IMathElement>) constructor

Initializes a new instance of the MathFunction class.

Aspose::Slides::MathText::MathFunction::MathFunction(System::String funcName, System::SharedPtr<IMathElement> baseArgument)

Remarks

Example:

auto func = System::MakeObject<MathFunction>(u"sin", System::MakeObject<MathematicalText>(u"x"));

See Also