Aspose::Words::Font::get_Italic method

Font::get_Italic method

True if the font is formatted as italic.

bool Aspose::Words::Font::get_Italic()

Examples

Shows how to write italicized text using a document builder.

auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);

builder->get_Font()->set_Size(36);
builder->get_Font()->set_Italic(true);
builder->Writeln(u"Hello world!");

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

See Also