コード例 #1
0
 public GlyphInfo(uint index, uint globalIndex, EndUpStyle endUpStyle)
 {
     this.index       = index;
     this.globalIndex = globalIndex;
     constructGlyphs  = null;
     this.endUpStyle  = endUpStyle;
 }
コード例 #2
0
 public GlyphInfo(uint index, uint globalIndex, string constructGlyphs)
 {
     this.index           = index;
     this.globalIndex     = globalIndex;
     this.constructGlyphs = constructGlyphs;
     endUpStyle           = EndUpStyle.none;
 }
コード例 #3
0
 public GlyphInfo(uint index, uint globalIndex)
 {
     this.index       = index;
     this.globalIndex = globalIndex;
     constructGlyphs  = null;
     endUpStyle       = EndUpStyle.none;
 }