PdfCharacterCodeToUnicodeMapper Delegate

Docotic.Pdf library help > BitMiracle.Docotic.Pdf > PdfCharacterCodeToUnicodeMapper Delegate
Defines a method that maps PDF character codes to Unicode strings.

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

Syntax

C#
public delegate string PdfCharacterCodeToUnicodeMapper(
	PdfCharacterCode characterCode
)
VB
Public Delegate Function PdfCharacterCodeToUnicodeMapper ( 
	characterCode As PdfCharacterCode
) As String

Parameters

characterCode
Type: BitMiracle.Docotic.Pdf.PdfCharacterCode
The character code to map.

Return Value

Type: String
The Unicode value corresponding to the provided character code.

Remarks

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

Different character codes can be mapped to the same Unicode string.

See Also