Table of Contents

Struct CodePointGlyphIndexPair

Namespace
PdfSharp.Fonts
Assembly
PdfSharp.dll

The combination of a Unicode code point and the glyph index of this code point in a particular font face.

public struct CodePointGlyphIndexPair
Inherited Members

Constructors

CodePointGlyphIndexPair(int, ushort)

The combination of a Unicode code point and the glyph index of this code point in a particular font face.

public CodePointGlyphIndexPair(int codePoint, ushort glyphIndex)

Parameters

codePoint int
glyphIndex ushort

Fields

CodePoint

The Unicode code point of the Character value. The code point can be 0 to indicate that the original character is not a valid UTF-32 code unit. This can happen when a string contains a single high or low surrogate without its counterpart.

public int CodePoint

Field Value

int

GlyphIndex

The glyph index of the code point for a specific OpenType font. The value is 0 if the specific font has no glyph for the code point.

public ushort GlyphIndex

Field Value

ushort