Specifies how font embedding and substitution are handled by a C1PrintDocument (see FontHandling for details).

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public enum FontHandling
Visual Basic
Public Enumeration FontHandling

Members

Member nameDescription
None Fonts are not embedded, and font substitution is not analyzed. Collections EmbeddedFonts and DocumentFonts are not populated when the document is generated.
BuildDocumentFonts Fonts are not embedded, and font substitution is not analyzed, but the DocumentFonts collection is populated with fonts explicitly used in the document when it is generated. The EmbeddedFonts collection is not populated.
BuildActualDocumentFonts Fonts are not embedded, but font substitution is analyzed. The DocumentFonts collection is populated with fonts actually used in the document when it is generated. The EmbeddedFonts collection is not populated.
EmbedFonts Fonts are embedded, but font substitution is not analyzed. Collections EmbeddedFonts and DocumentFonts are populated with fonts explicitly used in the document when it is generated.
EmbedActualFonts Fonts are embedded, and font substitution is analyzed. Collections EmbeddedFonts and DocumentFonts are populated with fonts actually used in the document when it is generated.

See Also