Removes the specified Row from the grid.

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(
	Row item
)
Visual Basic
Public Function Remove ( 
	item As Row
) As Boolean
Visual C++
public:
bool Remove(
	Row^ item
)
F#
member Remove : 
        item : Row -> bool 

Parameters

item
Type: Dapfor.Wpf.Controls..::..Row
The item to be removed.

Return Value

Type: Boolean
True if success. Otherwise false

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionitem

Thread Safety

The function is thread safe. The Row is removed in the synchronous way with blocking the calling thread.

See Also