DefaultFontName

PdfSaveOptions.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, UseProjectDefaultFont = false, DefaultFontName = "Segoe UI Black"
                  };
project.Save(OutDir + "CreateProject2_out.pdf", options);

See Also