Catrobat.IDE.Core.UI.ActionsCollection.Remove C# (CSharp) Method

Remove() public method

public Remove ( ModelBase item ) : bool
item ModelBase
return bool
        public bool Remove(ModelBase item)
        {
            if (item != null)
            {
                Remove((object) item);
                return true;
            }

            return false;
        }

Same methods

ActionsCollection::Remove ( object value ) : void