MathNaryOperator()

MathNaryOperator::MathNaryOperator(char16_t, System::SharedPtr<IMathElement>, System::SharedPtr<IMathElement>, System::SharedPtr<IMathElement>) constructor

Initializes a new instance of the MathNaryOperator class.

Aspose::Slides::MathText::MathNaryOperator::MathNaryOperator(char16_t operatorSymbol, System::SharedPtr<IMathElement> baseArgument, System::SharedPtr<IMathElement> lowerLimit, System::SharedPtr<IMathElement> upperLimit)

Arguments

ParameterTypeDescription
operatorSymbolchar16_tNary operator symbol
baseArgumentSystem::SharedPtr<IMathElement>Base argument
lowerLimitSystem::SharedPtr<IMathElement>Lower limit
upperLimitSystem::SharedPtr<IMathElement>Upper limit

Remarks

Example:

auto naryOperator = System::MakeObject<MathNaryOperator>(u'?', System::MakeObject<MathematicalText>(u"i"), System::MakeObject<MathematicalText>(u"i=0"), System::MakeObject<MathematicalText>(u"\U0001d465"));

MathNaryOperator::MathNaryOperator(char16_t, System::SharedPtr<IMathElement>, System::SharedPtr<IMathElement>) constructor

Initializes a new instance of the MathNaryOperator class.

Aspose::Slides::MathText::MathNaryOperator::MathNaryOperator(char16_t operatorSymbol, System::SharedPtr<IMathElement> baseArgument, System::SharedPtr<IMathElement> lowerLimit)

Arguments

ParameterTypeDescription
operatorSymbolchar16_tNary operator symbol
baseArgumentSystem::SharedPtr<IMathElement>Base argument
lowerLimitSystem::SharedPtr<IMathElement>Lower limit

Remarks

Example:

auto naryOperator = System::MakeObject<MathNaryOperator>(u'?', System::MakeObject<MathematicalText>(u"i"), System::MakeObject<MathematicalText>(u"i"));

MathNaryOperator::MathNaryOperator(char16_t, System::SharedPtr<IMathElement>) constructor

Initializes a new instance of the MathNaryOperator class.

Aspose::Slides::MathText::MathNaryOperator::MathNaryOperator(char16_t operatorSymbol, System::SharedPtr<IMathElement> baseArgument)

Arguments

ParameterTypeDescription
operatorSymbolchar16_tNary operator symbol
baseArgumentSystem::SharedPtr<IMathElement>Base argument

Remarks

Example:

auto naryOperator = System::MakeObject<MathNaryOperator>(u'?', System::MakeObject<MathematicalText>(u"i"));

See Also