FairyGUI.GComponent.RemoveChildren C# (CSharp) Method

RemoveChildren() public method

Remove all children.
public RemoveChildren ( ) : void
return void
        public void RemoveChildren()
        {
            RemoveChildren(0, -1, false);
        }

Same methods

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

Usage 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