Italic

Font.Italic property

صحيح إذا كان الخط منسقًا بالخط المائل.

public bool Italic { get; set; }

أمثلة

يوضح كيفية كتابة نص مائل باستخدام أداة إنشاء المستندات.

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

builder.Font.Size = 36;
builder.Font.Italic = true;
builder.Writeln("Hello world!");

doc.Save(ArtifactsDir + "Font.Italic.docx");

أنظر أيضا