RemoveChildAt() public method

public RemoveChildAt ( int index, bool dispose ) : GObject
index int
dispose bool
return GObject
    static int RemoveChildAt(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 2 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.GList), typeof(int)))
            {
                FairyGUI.GList   obj  = (FairyGUI.GList)ToLua.ToObject(L, 1);
                int              arg0 = (int)LuaDLL.lua_tonumber(L, 2);
                FairyGUI.GObject o    = obj.RemoveChildAt(arg0);
                ToLua.PushObject(L, o);
                return(1);
            }
            else if (count == 3 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.GList), typeof(int), typeof(bool)))
            {
                FairyGUI.GList   obj  = (FairyGUI.GList)ToLua.ToObject(L, 1);
                int              arg0 = (int)LuaDLL.lua_tonumber(L, 2);
                bool             arg1 = LuaDLL.lua_toboolean(L, 3);
                FairyGUI.GObject o    = obj.RemoveChildAt(arg0, arg1);
                ToLua.PushObject(L, o);
                return(1);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.GList.RemoveChildAt"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
示例#2
0
 static public int RemoveChildAt(IntPtr l)
 {
     try {
         FairyGUI.GList self = (FairyGUI.GList)checkSelf(l);
         System.Int32   a1;
         checkType(l, 2, out a1);
         System.Boolean a2;
         checkType(l, 3, out a2);
         var ret = self.RemoveChildAt(a1, a2);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
示例#3
0
 static int RemoveChildAt(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 3);
         FairyGUI.GList   obj  = (FairyGUI.GList)ToLua.CheckObject(L, 1, typeof(FairyGUI.GList));
         int              arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
         bool             arg1 = LuaDLL.luaL_checkboolean(L, 3);
         FairyGUI.GObject o    = obj.RemoveChildAt(arg0, arg1);
         ToLua.PushObject(L, o);
         return(1);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }