IMathGroupingCharacter

IMathGroupingCharacter interface

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

public interface IMathGroupingCharacter : IMathElement

特性

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

例子

示例:

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

也可以看看