GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / CollectionBase<T> Class / Remove Method
The T to remove from the collection.


Remove Method (CollectionBase<T>)
Removes the specified T from the collection.
Syntax
'Declaration
 
Public Sub Remove( _
   ByVal value As T _
) 
 
'Usage
 
Dim instance As CollectionBase(Of T)
Dim value As T
 
instance.Remove(value)

Parameters

value
The T to remove from the collection.
Exceptions
ExceptionDescription
The specified object is not found in the collection.
See Also