DataRepeater.UserDeletingItems Event
Occurs when the user deletes a DataRepeaterItem by pressing the DELETE key.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
'Declaration
Public Event UserDeletingItems As DataRepeaterAddRemoveItemsCancelEventHandler
public event DataRepeaterAddRemoveItemsCancelEventHandler UserDeletingItems
public:
event DataRepeaterAddRemoveItemsCancelEventHandler^ UserDeletingItems {
void add (DataRepeaterAddRemoveItemsCancelEventHandler^ value);
void remove (DataRepeaterAddRemoveItemsCancelEventHandler^ value);
}
member UserDeletingItems : IEvent<DataRepeaterAddRemoveItemsCancelEventHandler,
DataRepeaterAddRemoveItemsCancelEventArgs>
JScript does not support events.
Remarks
You can use the Cancel property of the DataRepeaterAddRemoveItemsCancelEventArgs class to cancel the deletion.
Hinweis
This event is raised only when the user deletes an item by using the keyboard shortcut. The ItemsRemoved event is raised first and handles all methods of deleting an item.
For more information about how to handle events, see Consuming Events.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualBasic.PowerPacks Namespace
Other Resources
Introduction to the DataRepeater Control (Visual Studio)
How to: Disable Adding and Deleting DataRepeater Items (Visual Studio)