Struct FdtReader.KerningTableEntry
Kerning table entry.
Assembly: Dalamud.dll
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.
public int LeftInt { get; }
Left
Gets the Unicode codepoint of the character for this entry in char type.
public char Left { get; }
RightInt
Gets the Unicode codepoint of the character for this entry in int type.
public int RightInt { get; }
Right
Gets the Unicode codepoint of the character for this entry in char type.
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.
public int LeftUtf8
RightUtf8
Integer representation of a Unicode character in UTF-8 in reverse order, read in little endian, for the right character.
public int RightUtf8
LeftSjis
Integer representation of a Shift_JIS character in reverse order, read in little endian, for the left character.
public ushort LeftSjis
RightSjis
Integer representation of a Shift_JIS character in reverse order, read in little endian, for the right character.
public ushort RightSjis
RightOffset
Horizontal offset adjustment for the right character.
public int RightOffset
Methods
CompareTo(KerningTableEntry)
public int CompareTo(FdtReader.KerningTableEntry other)
Returns
System.Int32
Parameters
| Type | Name |
|---|---|
| Dalamud.Interface.GameFonts.FdtReader.KerningTableEntry | other |
Implements
System.IComparable<Dalamud.Interface.GameFonts.FdtReader.KerningTableEntry>