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

Remove the specified symbol from the font.
public RemoveSymbol ( string sequence ) : void
sequence string
Результат void
Пример #1
0
 static public int RemoveSymbol(IntPtr l)
 {
     try {
         UIFont        self = (UIFont)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         self.RemoveSymbol(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Пример #2
0
 static int RemoveSymbol(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         UIFont obj  = (UIFont)ToLua.CheckObject <UIFont>(L, 1);
         string arg0 = ToLua.CheckString(L, 2);
         obj.RemoveSymbol(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
Пример #3
0
    public static int RemoveSymbol(IntPtr l)
    {
        int result;

        try
        {
            UIFont uIFont = (UIFont)LuaObject.checkSelf(l);
            string sequence;
            LuaObject.checkType(l, 2, out sequence);
            uIFont.RemoveSymbol(sequence);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }