FairyGUI.Utils.XMLList.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
        public void Clear()
        {
            rawList.Clear();
        }

Usage Example

Exemplo n.º 1
0
        public void RemoveChildren(string selector)
        {
            if (_children == null)
            {
                return;
            }

            if (string.IsNullOrEmpty(selector))
            {
                _children.Clear();
            }
            else
            {
                _children.RemoveAll(selector);
            }
        }
All Usage Examples Of FairyGUI.Utils.XMLList::Clear