GetPositionByIndex

TabStopCollection.GetPositionByIndex method

Ruft die Position (in Punkt) des Tabstopps am angegebenen Index ab.

public double GetPositionByIndex(int index)
ParameterTypBeschreibung
indexInt32Ein Index in der Sammlung von Tabstopps.

Rückgabewert

Die Position des Tabstopps.

Beispiele

Zeigt, wie man eine Registerkarte findet, ihren Index ansieht und ihre Position überprüft.

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

// Überprüfen Sie die Position des zweiten Tabstopps in der Sammlung.
Assert.AreEqual(ConvertUtil.MillimeterToPoint(60), tabStops.GetPositionByIndex(1), 0.1d);

Siehe auch