Gets or sets a predicate that determines whether a specific font should be embedded in the PDF document.
Namespace: MindFusion.Diagramming.Wpf.Export
Assembly: MindFusion.Diagramming.Wpf.PdfExport
SyntaxC#
Copy Code
|
|---|
public Func<string, Boolean> EmbedFont { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property EmbedFont As Func(Of String, Boolean) |
The predicate receives the font name as a parameter. Return true to embed the whole font file (including glyph geometries), or false to use PDF font descriptor describing font metrics. If this property is not set, no fonts will be embedded.
See Also