public GlyphInfo(uint index, uint globalIndex, EndUpStyle endUpStyle) { this.index = index; this.globalIndex = globalIndex; constructGlyphs = null; this.endUpStyle = endUpStyle; }
public GlyphInfo(uint index, uint globalIndex, string constructGlyphs) { this.index = index; this.globalIndex = globalIndex; this.constructGlyphs = constructGlyphs; endUpStyle = EndUpStyle.none; }
public GlyphInfo(uint index, uint globalIndex) { this.index = index; this.globalIndex = globalIndex; constructGlyphs = null; endUpStyle = EndUpStyle.none; }