RemoveAt

IMathBlockCollection.RemoveAt method

删除集合指定索引处的项目。

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

例子

示例:

[C#]
IMathBlockCollection blockCollection = new MathParagraph();
IMathBlock block = new MathBlock(new MathematicalText("y"));
blockCollection.Add(block);
blockCollection.RemoveAt(0);

也可以看看