Italic

Font.Italic property

Yazı tipi italik olarak biçimlendirilmişse doğrudur.

public bool Italic { get; set; }

Örnekler

Bir belge oluşturucu kullanılarak italik metnin nasıl yazılacağını gösterir.

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");

Ayrıca bakınız