JSONTools.JSONObject.Delete C# (CSharp) 메소드

Delete() 공개 메소드

public Delete ( ) : JSONObject
리턴 JSONObject
        public JSONObject Delete()
        {
            if (this.TreeNode != null)
            {
                this.Parent.TreeNode.Nodes.Remove(this.TreeNode);
            }
            this.Parent.ChildObjects.Remove(this);
            this.Parent.SetImage();
            return this.Parent;
        }