Namespace: BitMiracle.Docotic.Pdf
public PdfMissingGlyphMapper MissingGlyphHandler { get; set; }
Public Property MissingGlyphHandler As PdfMissingGlyphMapper Get Set
Default value: null.
You can use the following handler to substitute missing glyphs with a fixed text ("?" in this example):
(glyphText) => "?";
Use the following handler to skip glyphs that cannot be drawn:
(glyphText) => null;