Insert

IMathBlockCollection.Insert method

将 IMathBlock 插入到集合中指定索引处。

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

例子

示例:

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

也可以看看