C1.WPF.PrintDocument.4.6.2 Assembly / C1.C1Preview Namespace / FontHandling Enumeration

FontHandling Enumeration
Specifies how font embedding and substitution are handled by a C1PrintDocument (see FontProcessingOptions.FontHandling for details).
Syntax
'Declaration
 
Public Enum FontHandling 
   Inherits System.Enum
 
Members
MemberDescription
BuildActualDocumentFontsFonts are not embedded, but font substitution is analyzed. The C1PrintDocument.DocumentFonts collection is populated with fonts actually used in the document when it is generated. The C1PrintDocument.EmbeddedFonts collection is not populated.
BuildDocumentFontsFonts are not embedded, and font substitution is not analyzed, but the C1PrintDocument.DocumentFonts collection is populated with fonts explicitly used in the document when it is generated. The C1PrintDocument.EmbeddedFonts collection is not populated.
EmbedActualFontsFonts are embedded, and font substitution is analyzed. Collections C1PrintDocument.EmbeddedFonts and C1PrintDocument.DocumentFonts are populated with fonts actually used in the document when it is generated.
EmbedFontsFonts are embedded, but font substitution is not analyzed. Collections C1PrintDocument.EmbeddedFonts and C1PrintDocument.DocumentFonts are populated with fonts explicitly used in the document when it is generated.
NoneFonts are not embedded, and font substitution is not analyzed. Collections C1PrintDocument.EmbeddedFonts and C1PrintDocument.DocumentFonts are not populated when the document is generated.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         C1.C1Preview.FontHandling

See Also