Insert

IMathElementCollection.Insert method

将数学元素插入到集合中指定索引处。

public void Insert(int index, IMathElement item)
范围类型描述
indexInt32应插入 IMathElement 的从零开始的索引。
itemIMathElement要插入的 IMathElement。

例子

示例:

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

也可以看看