LineSpacing

Font.LineSpacing property

إرجاع تباعد الأسطر لهذا الخط (بالنقاط).

public double LineSpacing { get; }

أمثلة

يوضح كيفية الحصول على تباعد أسطر الخط بالنقاط.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// قم بتعيين خطوط مختلفة لـ DocumentBuilder وتحقق من تباعد الأسطر.
builder.Font.Name = "Calibri";
Assert.AreEqual(14.6484375d, builder.Font.LineSpacing);

builder.Font.Name = "Times New Roman";
Assert.AreEqual(13.798828125d, builder.Font.LineSpacing);

أنظر أيضا