Removes the first occurrence of a specific Header from the ICollection<(Of <(<'T>)>)>.

Namespace: Dapfor.Wpf.Controls
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public bool Remove(
	Header item
)
Visual Basic
Public Function Remove ( 
	item As Header
) As Boolean
Visual C++
public:
virtual bool Remove(
	Header^ item
) sealed
F#
abstract Remove : 
        item : Header -> bool 
override Remove : 
        item : Header -> bool 

Parameters

item
Type: Dapfor.Wpf.Controls..::..Header
The Header to remove from the ICollection<(Of <(<'T>)>)>.

Return Value

Type: Boolean
true if item was successfully removed from the ICollection<(Of <(<'T>)>)>; otherwise, false. This method also returns false if item is not found in the original ICollection<(Of <(<'T>)>)>.

Implements

ICollection<(Of <(<'T>)>)>..::..Remove(T)

See Also