Removes this Row with all children from the GridControl.

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

Return Value

Type: Boolean
True if the row has been successfully removed. Otherwise false.

Remarks

All resources, holding by the Row will be released, and the Row will be unsubscribed from receiving notifications from the user-defined object if it implements INotifyPropertyChanged interface. All children, attached to the specified Row will also be removed. The removing of the Row does not affect the user-defined data objects, so they can be used in the application.

See Also