FairyGUI.Container.RemoveChildren C# (CSharp) Method

RemoveChildren() public method

public RemoveChildren ( ) : void
return void
        public void RemoveChildren()
        {
            RemoveChildren(0, int.MaxValue, false);
        }

Same methods

Container::RemoveChildren ( int beginIndex, int endIndex, bool dispose ) : void

Usage Example

Example #1
0
    static int RemoveChildren(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 1 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Container)))
            {
                FairyGUI.Container obj = (FairyGUI.Container)ToLua.ToObject(L, 1);
                obj.RemoveChildren();
                return(0);
            }
            else if (count == 4 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Container), typeof(int), typeof(int), typeof(bool)))
            {
                FairyGUI.Container obj = (FairyGUI.Container)ToLua.ToObject(L, 1);
                int  arg0 = (int)LuaDLL.lua_tonumber(L, 2);
                int  arg1 = (int)LuaDLL.lua_tonumber(L, 3);
                bool arg2 = LuaDLL.lua_toboolean(L, 4);
                obj.RemoveChildren(arg0, arg1, arg2);
                return(0);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.Container.RemoveChildren"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
All Usage Examples Of FairyGUI.Container::RemoveChildren