FairyGUI.BaseFont.GetGlyph C# (CSharp) Method

GetGlyph() public method

public GetGlyph ( char ch, GlyphInfo glyph ) : bool
ch char
glyph GlyphInfo
return bool
        public virtual bool GetGlyph(char ch, GlyphInfo glyph)
        {
            return false;
        }

Usage Example

 static public int GetGlyph(IntPtr l)
 {
     try {
         FairyGUI.BaseFont self = (FairyGUI.BaseFont)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));
     }
 }
All Usage Examples Of FairyGUI.BaseFont::GetGlyph