Xceed DataGrid for WPF v7.2 Documentation
ItemRemoved Event (DataGridCollectionViewBase)


Xceed.Wpf.DataGrid Assembly > Xceed.Wpf.DataGrid Namespace > DataGridCollectionViewBase Class : ItemRemoved Event
Raised after the RemovingItem event to signal that an item has been removed from the underlying data source.
Syntax
'Declaration
 
Public Event ItemRemoved As EventHandler(Of DataGridItemRemovedEventArgs)
'Usage
 
Dim instance As DataGridCollectionViewBase
Dim handler As EventHandler(Of DataGridItemRemovedEventArgs)
 
AddHandler instance.ItemRemoved, handler
Event Data

The event handler receives an argument of type DataGridItemRemovedEventArgs containing data related to this event. The following DataGridItemRemovedEventArgs properties provide information specific to this event.

PropertyDescription
Gets the DataGridCollectionView to which the item will potentially be added or removed. (Inherited from Xceed.Wpf.DataGrid.DataGridItemEventArgs)
Gets the index at which the item was removed.  
Gets the item to add to or remove from the CollectionView. (Inherited from )
Requirements

Target Platforms: Windows 11, Windows, 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also