Group
Contents
[
Hide
]Group()
Places this element in a group using a bottom curly bracket
public IMathGroupingCharacter Group()
Return Value
New instance of type IMathGroupingCharacter
Examples
Example:
[C#]
IMathGroupingCharacter groupingElement = new MathematicalText("x;y;z").Group();
See Also
- interface IMathGroupingCharacter
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Group(char, MathTopBotPositions, MathTopBotPositions)
Places this element in a group using a grouping character such as bottom curly bracket or another
public IMathGroupingCharacter Group(char character, MathTopBotPositions position,
MathTopBotPositions verticalJustification)
Parameter | Type | Description |
---|---|---|
character | Char | 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
Examples
Example:
[C#]
IMathGroupingCharacter groupingElement = new MathematicalText("x;y;z").Group('\u23E1', MathTopBotPositions.Bottom, MathTopBotPositions.Top);
See Also
- interface IMathGroupingCharacter
- enum MathTopBotPositions
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides