CollectionBase
T
Remove Method
|
Removes the first occurrence of a specific object from the collection.
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public bool Remove(
T item
)
Public Function Remove (
item As T
) As Boolean
public:
virtual bool Remove(
T item
) sealed
abstract Remove :
item : 'T -> bool
override Remove :
item : 'T -> bool
Parameters
-
item
-
Type:
T
The object to remove from the collection.
Return Value
Type:
Boolean
true if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the collection.
Implements
ICollection
T
Remove(T)
See Also