'Declaration Public Function New( _ ByVal collectionView As DataGridCollectionViewBase, _ ByVal item As Object, _ ByVal cancel As Boolean _ )
'Usage Dim collectionView As DataGridCollectionViewBase Dim item As Object Dim cancel As Boolean Dim instance As New DataGridItemCancelEventArgs(collectionView, item, cancel)
public DataGridItemCancelEventArgs( DataGridCollectionViewBase collectionView, object item, bool cancel )
Parameters
- collectionView
- The DataGridCollectionView to which the item will potentially be added or removed.
- item
- The item to add to or removed from the collectionView.
- cancel
- true to cancel the addition or removal of the item; false to let the process continue.