FontSettings.DefaultFontName
FontSettings.DefaultFontName property
Gets or sets the default (or fallback) font for rendering.
public string DefaultFontName { get; set; }
Examples
Shows how to set custom font that will be used for print of output pdf.
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp");
var options = new PdfSaveOptions
{
PresentationFormat = PresentationFormat.GanttChart, FitContent = true
};
options.FontSettings.UseProjectDefaultFont = false;
options.FontSettings.DefaultFontName = "Segoe UI Black";
project.Save(OutDir + "CreateProject2_out.pdf", options);
See Also
- class FontSettings
- namespace Aspose.Tasks
- assembly Aspose.Tasks