IMathGroupingCharacter

IMathGroupingCharacter 接口

指定一个表达式上方或下方的分组符号,通常用于突出显示元素之间的关系

public interface IMathGroupingCharacter : IMathElement

属性

名称描述
AsIMathElement { get; }允许获取基本 IMathElement 接口 IMathElement
Base { get; }基本参数
Character { get; set; }分组字符 默认值: U+23DF (底部花括号)
Position { get; set; }分组字符的位置。默认: 底部
VerticalJustification { get; set; }分组字符的垂直对齐方式。指定对象相对于基线的对齐方式。例如,当分组字符位于对象上方时,VerticalJustification 设置为 Top 表示对象的顶部落在基线上;当 VerticalJustification 设置为 Bottom 时,表示对象的底部位于基线上 默认: 对于 Position=Top,Bottom;对于 Position=Bottom,Top

示例

示例:

[C#]
IMathGroupingCharacter groupingElement = new MathematicalText("x;y;z").Group();

另请参阅