PrintDocument for WinForms | ComponentOne
C1.PrintDocument.4.5.2 Assembly / C1.C1Preview Namespace / FontHandling Enumeration

In This Topic
    FontHandling Enumeration
    In This Topic
    Specifies how font embedding and substitution are handled by a C1PrintDocument (see FontProcessingOptions.FontHandling for details).
    Syntax
    'Declaration
     
    Public Enum FontHandling 
       Inherits System.Enum
    public enum FontHandling : 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