FilePath
FileFontSource.FilePath property
字体文件的路径。
public string FilePath { get; }
例子
演示如何使用本地文件系统中的字体文件作为字体源。
FileFontSource fileFontSource = new FileFontSource(MyDir + "Alte DIN 1451 Mittelschrift.ttf", 0);
Document doc = new Document();
doc.FontSettings = new FontSettings();
doc.FontSettings.SetFontsSources(new FontSourceBase[] {fileFontSource});
Assert.AreEqual(MyDir + "Alte DIN 1451 Mittelschrift.ttf", fileFontSource.FilePath);
Assert.AreEqual(FontSourceType.FontFile, fileFontSource.Type);
Assert.AreEqual(0, fileFontSource.Priority);
也可以看看
- class FileFontSource
- 命名空间 Aspose.Words.Fonts
- 部件 Aspose.Words