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.AddOnAfterLabelEdit

Adds an event handler for the "afterLabelEdit" event notification. The afterLabelEdit event is fired when the user finishes editing the text of an item in the ListView. The labelEdit property of the ListView must be true to enable the user to do this. The string to which the user changed the text is passed to the event, and the event handler is given the opportunity to reject the change, in which case the text will revert back to what it was before the user started the change.

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

Parameters

handler
LabelEditEventHandler to install for this event.

See Also

ListView Class | ListView Members | System.WinForms Namespace