RemoveAt

NodeCollection.RemoveAt method

从集合和文档中删除指定索引处的节点。

public void RemoveAt(int index)
范围类型描述
indexInt32节点从零开始的索引。 允许使用负索引,表示从列表的后面进行访问。 例如 -1 表示最后一个节点,-2 表示倒数第二个节点,依此类推。

例子

演示如何在文档中添加和删除部分。

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.Write("Section 1");
builder.InsertBreak(BreakType.SectionBreakNewPage);
builder.Write("Section 2");

Assert.AreEqual("Section 1\x000cSection 2", doc.GetText().Trim());

// 从文档中删除第一部分。
doc.Sections.RemoveAt(0);

Assert.AreEqual("Section 2", doc.GetText().Trim());

// 将当前第一部分的副本附加到文档末尾。
int lastSectionIdx = doc.Sections.Count - 1;
Section newSection = doc.Sections[lastSectionIdx].Clone();
doc.Sections.Add(newSection);

Assert.AreEqual("Section 2\x000cSection 2", doc.GetText().Trim());

也可以看看