Slickflow.Engine.Xpdl.NextActivityGateway.Remove C# (CSharp) Method

Remove() public method

public Remove ( NextActivityComponent nextActivity ) : bool
nextActivity NextActivityComponent
return bool
        public override bool Remove(NextActivityComponent nextActivity)
        {
            bool isRemoved = nextActivityList.Remove(nextActivity);
            if (nextActivityList.Count == 0)
                hasChildren = false;
            return isRemoved;
        }