Type
FolderFontSource.Type property
返回字体源的类型。
public override FontSourceType Type { get; }
例子
演示如何使用包含字体的本地系统文件夹作为字体源。
// 从包含字体文件的文件夹创建字体源。
FolderFontSource folderFontSource = new FolderFontSource(FontsDir, false, 1);
Document doc = new Document();
doc.FontSettings = new FontSettings();
doc.FontSettings.SetFontsSources(new FontSourceBase[] {folderFontSource});
Assert.AreEqual(FontsDir, folderFontSource.FolderPath);
Assert.AreEqual(false, folderFontSource.ScanSubfolders);
Assert.AreEqual(FontSourceType.FontsFolder, folderFontSource.Type);
Assert.AreEqual(1, folderFontSource.Priority);
也可以看看
- enum FontSourceType
- class FolderFontSource
- 命名空间 Aspose.Words.Fonts
- 部件 Aspose.Words