IsTrueType

FontInfo.IsTrueType property

指示此字体是 TrueType 或 OpenType 字体,而不是光栅或矢量字体。 默认为真的.

public bool IsTrueType { get; set; }

例子

演示如何打印文档中存在的字体的详细信息。

Document doc = new Document(MyDir + "Embedded font.docx");

FontInfoCollection allFonts = doc.FontInfos;
// 打印文档中所有已使用和未使用的字体。
for (int i = 0; i < allFonts.Count; i++)
{
    Console.WriteLine($"Font index #{i}");
    Console.WriteLine($"\tName: {allFonts[i].Name}");
    Console.WriteLine($"\tIs {(allFonts[i].IsTrueType ? "" : "not ")}a trueType font");
}

也可以看看