Skip to main content

Struct FdtReader.KerningTableEntry

Kerning table entry.

Assembly: Dalamud.dll
Declaration
public struct FdtReader.KerningTableEntry : IComparable<FdtReader.KerningTableEntry>

Implements:
System.IComparable<Dalamud.Interface.GameFonts.FdtReader.KerningTableEntry>

Properties

LeftInt

Gets the Unicode codepoint of the character for this entry in int type.

Declaration
public int LeftInt { get; }

Left

Gets the Unicode codepoint of the character for this entry in char type.

Declaration
public char Left { get; }

RightInt

Gets the Unicode codepoint of the character for this entry in int type.

Declaration
public int RightInt { get; }

Gets the Unicode codepoint of the character for this entry in char type.

Declaration
public char Right { get; }

Fields

LeftUtf8

Integer representation of a Unicode character in UTF-8 in reverse order, read in little endian, for the left character.

Declaration
public int LeftUtf8

RightUtf8

Integer representation of a Unicode character in UTF-8 in reverse order, read in little endian, for the right character.

Declaration
public int RightUtf8

LeftSjis

Integer representation of a Shift_JIS character in reverse order, read in little endian, for the left character.

Declaration
public ushort LeftSjis

RightSjis

Integer representation of a Shift_JIS character in reverse order, read in little endian, for the right character.

Declaration
public ushort RightSjis

RightOffset

Horizontal offset adjustment for the right character.

Declaration
public int RightOffset

Methods

CompareTo(KerningTableEntry)

Declaration
public int CompareTo(FdtReader.KerningTableEntry other)
Returns

System.Int32

Parameters
TypeName
Dalamud.Interface.GameFonts.FdtReader.KerningTableEntryother

Implements

  • System.IComparable<Dalamud.Interface.GameFonts.FdtReader.KerningTableEntry>