Group()
Contents
[
Hide
]MathElementBase::Group() method
Places this element in a group using a bottom curly bracket
System::SharedPtr<IMathGroupingCharacter> Aspose::Slides::MathText::MathElementBase::Group() override
Return Value
New instance of type IMathGroupingCharacter
Remarks
Example:
auto groupingElement = System::MakeObject<MathematicalText>(u"x;y;z")->Group();
MathElementBase::Group(char16_t, MathTopBotPositions, MathTopBotPositions) method
Places this element in a group using a grouping character such as bottom curly bracket or another
System::SharedPtr<IMathGroupingCharacter> Aspose::Slides::MathText::MathElementBase::Group(char16_t character, MathTopBotPositions position, MathTopBotPositions verticalJustification) override
Arguments
Parameter | Type | Description |
---|---|---|
character | char16_t | Grouping Character such as BOTTOM CURLY BRACKET (U+23DF) or any other |
position | MathTopBotPositions | Position of grouping character |
verticalJustification | MathTopBotPositions | Vertical justification of group character. Specifies the alignment of the object with respect to the baseline. For example, when the group character is above the object, VerticalJustification of Top signifies that the top of the object falls on the baseline; when VerticalJustification is set to Bottom, the bottom of the object is on the baseline |
Return Value
New instance of type IMathGroupingCharacter
Remarks
Example:
auto groupingElement = System::MakeObject<MathematicalText>(u"x;y;z")->Group(u'\u23E1', Aspose::Slides::MathText::MathTopBotPositions::Bottom, Aspose::Slides::MathText::MathTopBotPositions::Top);
See Also
- Enum MathTopBotPositions
- Typedef SharedPtr
- Class IMathGroupingCharacter
- Class MathElementBase
- Namespace Aspose::Slides::MathText
- Library Aspose.Slides