Gets or sets a semicolon-delimited string of values indicating which fonts should not be embedded in the PDF document.
The NeverEmbedFonts property has the "*" option that indicates whether all fonts should or should not be loaded to the PDF document.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property NeverEmbedFonts As String |
| C# | |
|---|
public string NeverEmbedFonts {get; set;} |
Property Value
Semicolon-delimited string of font names.
Remarks
Example
| C# | Copy Code |
|---|
private void btnExport_Click(object sender, System.EventArgs e)
{
rptDataDynamics rpt = new rptDataDynamics();
DataDynamics.ActiveReports.Export.Pdf.PdfExport p = new DataDynamics.ActiveReports.Export.Pdf.PdfExport();
p.NeverEmbedFonts = "Arial;Times New Roman;Verdana";
rpt.Run();
this.arv.Document = rpt.Document;
p.Export(rpt.Document, Application.StartupPath + "\\p.pdf");
} |
| Visual Basic | Copy Code |
|---|
Private Sub btnExport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim rpt As New rptDD
Dim p As New DataDynamics.ActiveReports.Export.Pdf.PdfExport
p.NeverEmbedFonts = "Arial;Times New Roman;Verdana"
rpt.Run()
Me.Viewer1.Document = rpt.Document
p.Export(rpt.Document, Application.StartupPath & "\p.pdf")
End Sub |
| C# | Copy Code |
|---|
// do not embed any fonts to the pdf output
pdfe.NeverEmbedFonts = "*";
// embed all fonts to the pdf output
pdfe.NeverEmbedFonts = ""; |
| Visual Basic | Copy Code |
|---|
' do not embed any fonts to the pdf output
pdfe.NeverEmbedFonts = "*"
' embed all fonts to the pdf output
pdfe.NeverEmbedFonts = "" |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also