Open.Core.Lists.ListView.Remove C# (CSharp) Method

Remove() public method

Removes the list item with the specified model.
public Remove ( object model ) : void
model object The model of the item to remove.
return void
        public void Remove(object model)
        {
            // Setup initial conditions.
            if (model == null) return;
            IListItemView view = GetView(model);
            RemoveView(view as IView);
        }