GetGlyphSize() публичный Метод

public GetGlyphSize ( char ch, float &width, float &height ) : bool
ch char
width float
height float
Результат bool
 static public int GetGlyphSize(IntPtr l)
 {
     try {
         FairyGUI.DynamicFont self = (FairyGUI.DynamicFont)checkSelf(l);
         System.Char          a1;
         checkType(l, 2, out a1);
         System.Int32 a2;
         System.Int32 a3;
         var          ret = self.GetGlyphSize(a1, out a2, out a3);
         pushValue(l, true);
         pushValue(l, ret);
         pushValue(l, a2);
         pushValue(l, a3);
         return(4);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }