GetPositionByIndex
TabStopCollection.GetPositionByIndex method
Belirtilen dizindeki sekme durağının konumunu (nokta cinsinden) alır.
public double GetPositionByIndex(int index)
Parametre | Tip | Tanım |
---|---|---|
index | Int32 | Sekme duraklarının koleksiyonuna ilişkin bir dizin. |
Geri dönüş değeri
Sekme durağının konumu.
Örnekler
Bir sekmenin nasıl bulunacağını, dizinine nasıl uğranacağını ve konumunun nasıl doğrulanacağını gösterir.
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);
// Koleksiyondaki ikinci sekme durağının konumunu doğrulayın.
Assert.AreEqual(ConvertUtil.MillimeterToPoint(60), tabStops.GetPositionByIndex(1), 0.1d);
Ayrıca bakınız
- class TabStopCollection
- ad alanı Aspose.Words
- toplantı Aspose.Words