DataRepeater.UserAddedItems Event

 

Occurs when the user adds a new DataRepeaterItem by pressing the CTRL+N keyboard shortcut.

Namespace:   Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

public event DataRepeaterAddRemoveItemsEventHandler UserAddedItems
public:
event DataRepeaterAddRemoveItemsEventHandler^ UserAddedItems {
    void add(DataRepeaterAddRemoveItemsEventHandler^ value);
    void remove(DataRepeaterAddRemoveItemsEventHandler^ value);
}
member UserAddedItems : IEvent<DataRepeaterAddRemoveItemsEventHandler,
    DataRepeaterAddRemoveItemsEventArgs>
Public Event UserAddedItems As DataRepeaterAddRemoveItemsEventHandler

Remarks

The UserAddedItems event is raised when a request is made to add a new item, before the new item is displayed. Use this event to retrieve the index for the new item from the DataRepeaterAddRemoveItemsEventArgs.

Note

This event is raised only when the user adds an item by using the keyboard shortcut. The ItemsAdded event is raised first and handles all methods of adding a new item.

For more information about how to handle events, see Handling and Raising Events.

See Also

ItemsAdded
DataRepeater Class
Microsoft.VisualBasic.PowerPacks Namespace
Introduction to the DataRepeater Control (Visual Studio)
How to: Disable Adding and Deleting DataRepeater Items (Visual Studio)

Return to top