GetGlyph() public method

public GetGlyph ( char ch, GlyphInfo glyph ) : bool
ch char
glyph GlyphInfo
return bool
 static public int GetGlyph(IntPtr l)
 {
     try {
         FairyGUI.BitmapFont self = (FairyGUI.BitmapFont)checkSelf(l);
         System.Char         a1;
         checkType(l, 2, out a1);
         var ret = self.GetGlyph(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }