RemoveByIndex

TabStopCollection.RemoveByIndex method

Entfernt einen Tabstopp am angegebenen Index aus der Sammlung.

public void RemoveByIndex(int index)
ParameterTypBeschreibung
indexInt32Ein Index in der Sammlung von Tabstopps.

Beispiele

Zeigt, wie man einen Tabstopp in einem Dokument anhand seines Index auswählt und entfernt.

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);

// Den ersten Tabstopp entfernen.
tabStops.RemoveByIndex(0);

Assert.AreEqual(1, tabStops.Count);

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

Siehe auch