Monobjc.Tools.Xcode.PBXGroup.Clear C# (CSharp) Method

Clear() public method

Clear all the children.
public Clear ( ) : void
return void
        public void Clear()
        {
            this.children.Clear();
        }

Usage Example

Beispiel #1
0
        /// <summary>
        ///   Gets the group.
        /// </summary>
        /// <param name = "groups">The group path.</param>
        /// <returns></returns>
        public void ClearGroup(String groups)
        {
            PBXGroup group = this.GetGroup(groups);

            group.Clear();
        }