MathGroupingCharacter()

MathGroupingCharacter::MathGroupingCharacter(System::SharedPtr<IMathElement>) constructor

Initializes a new instance of the MathGroupingCharacter class with the default grouping character U+23DF (BOTTOM CURLY BRACKET)

Aspose::Slides::MathText::MathGroupingCharacter::MathGroupingCharacter(System::SharedPtr<IMathElement> element)

Arguments

ParameterTypeDescription
elementSystem::SharedPtr<IMathElement>The base element to which the bar is applied

Remarks

Example:

auto groupingCharacter = System::MakeObject<MathGroupingCharacter>(System::MakeObject<MathematicalText>(u"abc"));

MathGroupingCharacter::MathGroupingCharacter(System::SharedPtr<IMathElement>, char16_t, MathTopBotPositions, MathTopBotPositions) constructor

Initializes a new instance of the MathGroupingCharacter class.

Aspose::Slides::MathText::MathGroupingCharacter::MathGroupingCharacter(System::SharedPtr<IMathElement> element, char16_t character, MathTopBotPositions position, MathTopBotPositions verticalJustification)

Arguments

ParameterTypeDescription
elementSystem::SharedPtr<IMathElement>The base element to which the bar is applied
characterchar16_tGrouping Character
positionMathTopBotPositionsPosition of grouping character
verticalJustificationMathTopBotPositionsVertical justification of group character

Remarks

Example:

auto groupingCharacter = System::MakeObject<MathGroupingCharacter>(System::MakeObject<MathematicalText>(u"abc"), u'_', Aspose::Slides::MathText::MathTopBotPositions::Top, Aspose::Slides::MathText::MathTopBotPositions::Bottom);

See Also