MathGroupingCharacter

MathGroupingCharacter(IMathElement)

Initialise une nouvelle instance de la classe MathGroupingCharacter avec le caractère de regroupement par défaut U+23DF (BOTTOM CURLY BRACKET)

public MathGroupingCharacter(IMathElement element)
ParamètreTaperLa description
elementIMathElementL’élément de base sur lequel la barre est appliquée

Exemples

Exemple :

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

Voir également


MathGroupingCharacter(IMathElement, char, MathTopBotPositions, MathTopBotPositions)

Initialise une nouvelle instance de la classe MathGroupingCharacter.

public MathGroupingCharacter(IMathElement element, char character, MathTopBotPositions position, 
    MathTopBotPositions verticalJustification)
ParamètreTaperLa description
elementIMathElementL’élément de base sur lequel la barre est appliquée
characterCharCaractère de regroupement
positionMathTopBotPositionsPosition du caractère de regroupement
verticalJustificationMathTopBotPositionsJustification verticale du caractère de groupe

Exemples

Exemple :

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

Voir également