Join

Join(IMathElement)

连接一个数学元素并形成一个数学块

public IMathBlock Join(IMathElement mathElement)
范围类型描述
mathElementIMathElement要加入的元素

返回值

包含此实例和指定参数的新 IMathBlock

例子

示例:

[C#]
IMathElement element1 = new MathematicalText("x");
IMathElement element2 = new MathematicalText("y");
IMathBlock block = element1.Join(element2);

也可以看看


Join(string)

连接数学文本并形成数学块

public IMathBlock Join(string mathText)
范围类型描述
mathTextString数学要加入的文本

返回值

包含此实例和指定参数的新 IMathBlock

例子

示例:

[C#]
IMathElement element = new MathematicalText("x");
IMathBlock block = element.Join("+y");

也可以看看