FontConfigSubstitution
FontSubstitutionSettings.FontConfigSubstitution property
与字体配置替换规则相关的设置。
public FontConfigSubstitutionRule FontConfigSubstitution { get; }
例子
显示与操作系统相关的字体配置替换。
FontSettings fontSettings = new FontSettings();
FontConfigSubstitutionRule fontConfigSubstitution =
fontSettings.SubstitutionSettings.FontConfigSubstitution;
bool isWindows = new[] {PlatformID.Win32NT, PlatformID.Win32S, PlatformID.Win32Windows, PlatformID.WinCE}
.Any(p => Environment.OSVersion.Platform == p);
// FontConfigSubstitutionRule 对象在 Windows/非 Windows 平台上的工作方式不同。
// 在 Windows 上,它不可用。
if (isWindows)
{
Assert.False(fontConfigSubstitution.Enabled);
Assert.False(fontConfigSubstitution.IsFontConfigAvailable());
}
bool isLinuxOrMac =
new[] {PlatformID.Unix, PlatformID.MacOSX}.Any(p => Environment.OSVersion.Platform == p);
// 在 Linux/Mac 上,我们将可以访问它,并且能够执行操作。
if (isLinuxOrMac)
{
Assert.True(fontConfigSubstitution.Enabled);
Assert.True(fontConfigSubstitution.IsFontConfigAvailable());
fontConfigSubstitution.ResetCache();
}
也可以看看
- class FontConfigSubstitutionRule
- class FontSubstitutionSettings
- 命名空间 Aspose.Words.Fonts
- 部件 Aspose.Words