Xceed DataGrid for WPF v7.3 Documentation
Xceed.Wpf.DataGrid Assembly / Xceed.Wpf.DataGrid Namespace / DataGridItemRemovedEventArgs Class / DataGridItemRemovedEventArgs Constructor
The DataGridCollectionView to which the item was removed.
The item that was removed.
The zero-based index at which the item was removed.


In This Topic
    DataGridItemRemovedEventArgs Constructor
    In This Topic

    Initializes a new instance of the DataGridtemRemovedEventArgs class specifying the item and the collection view from which it was removed.

    Syntax
    'Declaration
     
    Public Function New( _
       ByVal collectionView As DataGridCollectionViewBase, _
       ByVal item As Object, _
       ByVal index As Integer _
    )
    'Usage
     
    Dim collectionView As DataGridCollectionViewBase
    Dim item As Object
    Dim index As Integer
     
    Dim instance As New DataGridItemRemovedEventArgs(collectionView, item, index)
    public DataGridItemRemovedEventArgs( 
       DataGridCollectionViewBase collectionView,
       object item,
       int index
    )

    Parameters

    collectionView
    The DataGridCollectionView to which the item was removed.
    item
    The item that was removed.
    index
    The zero-based index at which the item was removed.
    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