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

Adds an event handler for the "itemCheck" event notification. This event is called whenever the check state of an item changes. NOTE: The value is not updated until after the event. Duplicates adds are not filtered out.

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

Parameters

handler
New Event Handler to install for this event.

See Also

ListView Class | ListView Members | System.WinForms Namespace