FairyGUI.GComponent.RemoveChildren C# (CSharp) Method

RemoveChildren() public method

Removes a range of children from the container (endIndex included).
public RemoveChildren ( int beginIndex, int endIndex, bool dispose ) : void
beginIndex int Begin index.
endIndex int End index.(Included).
dispose bool If true, the child will be disposed right away.
return void
        public void RemoveChildren(int beginIndex, int endIndex, bool dispose)
        {
            if (endIndex < 0 || endIndex >= numChildren)
                endIndex = numChildren - 1;

            for (int i = beginIndex; i <= endIndex; ++i)
                RemoveChildAt(beginIndex, dispose);
        }

Same methods

GComponent::RemoveChildren ( ) : void

Usage Example

Example #1
0
 static public int RemoveChildren(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (argc == 1)
         {
             FairyGUI.GComponent self = (FairyGUI.GComponent)checkSelf(l);
             self.RemoveChildren();
             pushValue(l, true);
             return(1);
         }
         else if (argc == 4)
         {
             FairyGUI.GComponent self = (FairyGUI.GComponent)checkSelf(l);
             System.Int32        a1;
             checkType(l, 2, out a1);
             System.Int32 a2;
             checkType(l, 3, out a2);
             System.Boolean a3;
             checkType(l, 4, out a3);
             self.RemoveChildren(a1, a2, a3);
             pushValue(l, true);
             return(1);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.GComponent::RemoveChildren