MathGroupingCharacter

MathGroupingCharacter(IMathElement)

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

public MathGroupingCharacter(IMathElement element)
ParameterTypeDescription
elementIMathElementThe base element to which the bar is applied

Examples

Example:

[C#]
MathGroupingCharacter groupingCharacter = new MathGroupingCharacter(new MathematicalText("abc"));

See Also


MathGroupingCharacter(IMathElement, char, MathTopBotPositions, MathTopBotPositions)

Initializes a new instance of the MathGroupingCharacter class.

public MathGroupingCharacter(IMathElement element, char character, MathTopBotPositions position, 
    MathTopBotPositions verticalJustification)
ParameterTypeDescription
elementIMathElementThe base element to which the bar is applied
characterCharGrouping Character
positionMathTopBotPositionsPosition of grouping character
verticalJustificationMathTopBotPositionsVertical justification of group character

Examples

Example:

[C#]
MathGroupingCharacter groupingCharacter = new MathGroupingCharacter(new MathematicalText("abc"), '_', MathTopBotPositions.Top, MathTopBotPositions.Bottom);

See Also