Embedding Fonts into Reports
To embed fonts to a report, the following code is necessary.
GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport p = new GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport();
p.NeverEmbedFonts = "";
To embed fonts to a report, the following code is necessary.
GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport p = new GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport();
p.NeverEmbedFonts = "";
Logan McCarthy