RemoveAt

IMathElementCollection.RemoveAt method

移除集合指定索引处的元素。

public void RemoveAt(int index)
范围类型描述
indexInt32要删除的元素的从零开始的索引。

例子

示例:

[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")));
collection.RemoveAt(2);

也可以看看