フォントの操作

フォントとは、特定のサイズ、色、デザインを持つ文字のセットです。 Aspose.Words では、fonts モジュールと Font クラスを使用してフォントを操作できます。

フォントの書式設定

現在のフォントの書式設定は、Font プロパティによって返される Font オブジェクトによって表されます。 Font クラスには、Microsoft Word で使用可能なフォント プロパティを複製した、さまざまなフォント プロパティが含まれています。

次のコード例は、フォントの書式設定を設定する方法を示しています。

# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
font = builder.font
font.bold = True
font.color = drawing.Color.dark_blue
font.italic = True
font.name = "Arial"
font.size = 24
font.spacing = 5
font.underline = aw.Underline.DOUBLE
builder.writeln("I'm a very nice formatted string.")
doc.save(docs_base.artifacts_dir + "WorkingWithFonts.set_font_formatting.docx")

フォントの塗りつぶしプロパティを使用して、テキストの塗りつぶし書式を設定できるようになりました。たとえば、テキスト塗りつぶしの前景色や透明度を変更する機能が提供されます。

フォントの行間隔の取得

フォントの行間隔は、テキストの連続する 2 行のベースライン間の垂直方向の距離です。したがって、行間隔には、行間の空白スペースと文字自体の高さが含まれます。

以下の例に示すように、この値を取得するために、line_spacing プロパティが Font クラスに導入されました。

# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.font.name = "Calibri"
builder.writeln("qText")
font = builder.document.first_section.body.first_paragraph.runs[0].font
print(f"lineSpacing = {font.line_spacing}")

フォント強調マーク

一部の東アジア言語では、強調を示すために特別な強調記号を使用します。 Font クラスは、書式設定に適用される EmphasisMark 列挙値を取得または設定するための emphasis_mark プロパティを提供します。

次のコード例は、EphasisMark プロパティを設定する方法を示しています。

# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET
document = aw.Document()
builder = aw.DocumentBuilder(document)
builder.font.emphasis_mark = aw.EmphasisMark.UNDER_SOLID_CIRCLE
builder.write("Emphasis text")
builder.writeln()
builder.font.clear_formatting()
builder.write("Simple text")
document.save(docs_base.artifacts_dir + "WorkingWithFonts.set_font_emphasis_mark.docx")