The different ways that a font can be stored inside a PDF.

Namespace: TallComponents.PDF.Fonts
Assembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.1

Syntax

C#
public enum EmbedMode
Visual Basic
Public Enumeration EmbedMode

Members

Member nameValueDescription
Auto0 The embed mode will be determined based on how the font is used. If the font is used to render static text only, then the subset will be embedded. If the font is associated with an editable field, then the full font will be embedded. This is the default embed mode of a newly created TrueType font.
Unknown1 The font embed mode could not be determined.
ReferenceOnly2 The font is not embedded. Only a reference is stored inside the PDF.
Subset3 A subset of the font is embdedded inside the PDF.
Full4 The font is fully embedded inside the PDF.

See Also