FairyGUI.Utils.XML.Elements C# (CSharp) Method

Elements() public method

public Elements ( ) : XMLList
return XMLList
        public XMLList Elements()
        {
            if (_children == null)
                _children = new XMLList();
            return _children;
        }

Same methods

XML::Elements ( string selector ) : XMLList

Usage Example

 static public int Elements(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (argc == 1)
         {
             FairyGUI.Utils.XML self = (FairyGUI.Utils.XML)checkSelf(l);
             var ret = self.Elements();
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         else if (argc == 2)
         {
             FairyGUI.Utils.XML self = (FairyGUI.Utils.XML)checkSelf(l);
             System.String      a1;
             checkType(l, 2, out a1);
             var ret = self.Elements(a1);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         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.Utils.XML::Elements