NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ListView.AddOnItemActivate

Adds an event handler for the "itemActivate" event notification The itemActivate event is fired when the user activates one or more items. Activation may be accomplished by either a single or double click, depending on the value of the activation property, or with the keyboard. The event handler should call getSelectedItems to determine which items are being activated.

[Visual Basic]
Public Sub AddOnItemActivate( _
   ByVal handler As EventHandler _
)
[C#]
public void AddOnItemActivate(
   EventHandler handler
);
[C++]
public: void AddOnItemActivate(
   EventHandler* handler
);
[JScript]
public function AddOnItemActivate(
   handler : EventHandler
);

Parameters

handler
Event handler to install for this event.

See Also

ListView Class | ListView Members | System.WinForms Namespace