Group

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


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)
ParameterTypeDescription
characterCharGrouping Character such as BOTTOM CURLY BRACKET (U+23DF) or any other
positionMathTopBotPositionsPosition of grouping character
verticalJustificationMathTopBotPositionsVertical 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