Add

IMathElementCollection.Add method

将数学元素添加到集合的末尾。

public void Add(IMathElement item)
范围类型描述
itemIMathElement要添加到集合末尾的 IMathElement。

例子

示例:

[C#]
IMathElementCollection collection = new MathBlock(new MathematicalText("x"));
collection.Add(new MathematicalText("+"));
collection.Add(new MathRadical(new MathematicalText("x"), new MathematicalText("3")));

也可以看看