DistanceLeft
Table.DistanceLeft property
Soldaki tablo ile çevresindeki metin arasındaki mesafeyi puan cinsinden alır veya ayarlar.
public double DistanceLeft { get; set; }
Örnekler
Tablo sınırları ile metin arasındaki mesafenin nasıl ayarlanacağını gösterir.
Document doc = new Document(MyDir + "Table wrapped by text.docx");
Table table = doc.FirstSection.Body.Tables[0];
Assert.AreEqual(25.9d, table.DistanceTop);
Assert.AreEqual(25.9d, table.DistanceBottom);
Assert.AreEqual(17.3d, table.DistanceLeft);
Assert.AreEqual(17.3d, table.DistanceRight);
// Tablo ile çevresindeki metin arasındaki mesafeyi ayarlayın.
table.DistanceLeft = 24;
table.DistanceRight = 24;
table.DistanceTop = 3;
table.DistanceBottom = 3;
doc.Save(ArtifactsDir + "Table.DistanceBetweenTableAndText.docx");
Ayrıca bakınız
- class Table
- ad alanı Aspose.Words.Tables
- toplantı Aspose.Words