GetPositionByIndex

TabStopCollection.GetPositionByIndex method

获取指定索引处制表位的位置(以磅为单位)。

public double GetPositionByIndex(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(ConvertUtil.MillimeterToPoint(60), tabStops.GetPositionByIndex(1), 0.1d);

也可以看看