Specifies flags for PDE font creation routine.
            
            Syntax
            
            
            
            
            'Declaration
 
Public Enum ImGearPDEFontCreateFlags 
   Inherits System.Enum
             
        
            
        
            
            public enum ImGearPDEFontCreateFlags : System.Enum 
             
        
            
            __value public enum ImGearPDEFontCreateFlags : public System.Enum 
             
        
            
            public enum class ImGearPDEFontCreateFlags : public System.Enum 
             
        
             
         
            Members
| Member | Description | 
| CREATE_ALL_WIDTHS | Supply entire widths table. Affects Type0 fonts only. | 
| CREATE_EMBEDDED | Embed the font. Create an embedded font. | 
| CREATE_GID_OVERRIDE | The library will convert cp to gid with identity embedded. | 
| CREATE_NOT_ALLOWED | Creation is not allowed. Used when the combination of SysFont and SysEncoding is not allowed. | 
| CREATE_SUBSET | Subset the font. Same as WILL_SUBSET. | 
| CREATE_TO_UNICODE | Create ToUnicode cmap. | 
| DEFER_WIDTHS | Wait to get widths until later (affects Type0 fonts only). | 
| DO_NOT_EMBED | Do not embed the font. You cannot set both this and the WILL_SUBSET flags. Nor can you set CREATE_EMBEDDED. | 
| ENCODE_BY_GID | Create a CIDFont with identity (GID) encoding. | 
| WILL_SUBSET | Subset the font. | 
 
            
            
            
            
            
            
            
            Inheritance Hierarchy
System.Object
   System.ValueType
      System.Enum
         ImageGear.Formats.PDF.ImGearPDEFontCreateFlags
 
            
            
            See Also