DefaultFontSubstitutionRule

DefaultFontSubstitutionRule class

默认字体替换规则。

要了解更多信息,请访问使用字体文档文章。

public class DefaultFontSubstitutionRule : FontSubstitutionRule

特性

姓名描述
DefaultFontName { get; set; }获取或设置默认字体名称。
virtual Enabled { get; set; }指定是否启用规则。

评论

此规则定义单个默认字体名称,用于在原始字体不可用时进行替换。

例子

演示如何设置默认字体替换规则。

Document doc = new Document();
FontSettings fontSettings = new FontSettings();
doc.FontSettings = fontSettings;

// 获取 FontSettings 中的默认替换规则。
// 此规则将用“Times New Roman”替换所有缺失的字体。
DefaultFontSubstitutionRule defaultFontSubstitutionRule =
    fontSettings.SubstitutionSettings.DefaultFontSubstitution;
Assert.True(defaultFontSubstitutionRule.Enabled);
Assert.AreEqual("Times New Roman", defaultFontSubstitutionRule.DefaultFontName);

// 将默认字体替换设置为“Courier New”。
defaultFontSubstitutionRule.DefaultFontName = "Courier New";

// 使用文档生成器,以我们不必看到替换发生的字体添加一些文本,
// 然后将结果呈现为 PDF。
DocumentBuilder builder = new DocumentBuilder(doc);

builder.Font.Name = "Missing Font";
builder.Writeln("Line written in a missing font, which will be substituted with Courier New.");

doc.Save(ArtifactsDir + "FontSettings.DefaultFontSubstitutionRule.pdf");

也可以看看