MathGroupingCharacter

MathGroupingCharacter(IMathElement)

使用默认分组字符 U+23DF(下大括号) 初始化 MathGroupingCharacter 类的新实例

public MathGroupingCharacter(IMathElement element)
范围类型描述
elementIMathElement应用条的基本元素

例子

示例:

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

也可以看看


MathGroupingCharacter(IMathElement, char, MathTopBotPositions, MathTopBotPositions)

初始化 MathGroupingCharacter 类的新实例。

public MathGroupingCharacter(IMathElement element, char character, MathTopBotPositions position, 
    MathTopBotPositions verticalJustification)
范围类型描述
elementIMathElement应用条的基本元素
characterChar分组字符
positionMathTopBotPositions分组字符位置
verticalJustificationMathTopBotPositions分组字符垂直对齐

例子

示例:

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

也可以看看