[]
Represents a font subset and its usage in a PDF.
public class GcPdfDocument.FontsUsageStats.FontSubsetInfo
public FontSubsetInfo()
Gets the list of font subsets that define sets of characters which conflict with the set of characters defined in the current subset. A conflict occurs if the same PDF code is associated with different Unicode character or glyph in different font subsets.
public List<GcPdfDocument.FontsUsageStats.FontSubsetInfo> Conflicts { get; }
Gets the list of font subsets that define sets of characters which contain all characters in the current subset.
public List<GcPdfDocument.FontsUsageStats.FontSubsetInfo> ContainedIn { get; }
Gets the list of font subsets that define sets of characters which are fully contained in the current subset.
public List<GcPdfDocument.FontsUsageStats.FontSubsetInfo> Contains { get; }
Gets the Font object associated with this subset.
public Font Font { get; }
Gets the list of font subsets that define sets of characters that intersect with the set of characters defined in the current subset.
public List<GcPdfDocument.FontsUsageStats.FontSubsetInfo> Intersects { get; }
Gets the list of font subsets that define the exact same set of characters as the current subset.
public List<GcPdfDocument.FontsUsageStats.FontSubsetInfo> Same { get; }
Gets the name of the subset.
public string SubsetName { get; }