PdfMissingGlyphMapper Delegate

Docotic.Pdf library help > BitMiracle.Docotic.Pdf > PdfMissingGlyphMapper Delegate
Defines a method that substitutes text for a missing glyph in a PDF font.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public delegate string PdfMissingGlyphMapper(
	string glyphText
)
VB
Public Delegate Function PdfMissingGlyphMapper ( 
	glyphText As String
) As String

Parameters

glyphText
Type: System.String
The text to map.

Return Value

Type: String
The substitution text.

Remarks

The method can return null or empty string as the result of the mapping.

Text for different glyphs can be mapped to the same Unicode string.

See Also