RemoveByIndex

TabStopCollection.RemoveByIndex method

从集合中删除指定索引处的制表位。

public void RemoveByIndex(int index)
范围类型描述
indexInt32制表位集合的索引。

例子

演示如何通过索引选择文档中的制表位并将其删除。

Document doc = new Document();
TabStopCollection tabStops = doc.FirstSection.Body.Paragraphs[0].ParagraphFormat.TabStops;

tabStops.Add(ConvertUtil.MillimeterToPoint(30), TabAlignment.Left, TabLeader.Dashes);
tabStops.Add(ConvertUtil.MillimeterToPoint(60), TabAlignment.Left, TabLeader.Dashes);

Assert.AreEqual(2, tabStops.Count);

// 删除第一个制表位。
tabStops.RemoveByIndex(0);

Assert.AreEqual(1, tabStops.Count);

doc.Save(ArtifactsDir + "TabStopCollection.RemoveByIndex.docx");

也可以看看