Habanero.Faces.Win.ListBoxWin.ListBoxObjectCollectionWin.Remove C# (CSharp) Method

Remove() public method

Removes the specified object from the collection
public Remove ( object item ) : void
item object An object representing the item to remove from the collection
return void
            public void Remove(object item)
            {
                _items.Remove(item);
            }