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!

CheckedListBox ItemCheck Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the ItemCheck event.

[Visual Basic]
Private Sub CheckedListBoxName_ItemCheck( _
   ByVal sender As Object, _
   ByVal e As ItemCheckEventArgs _
)
[C#]
private void CheckedListBoxName_ItemCheck(
   object sender,
   ItemCheckEventArgs e
);
[C++]
private: void CheckedListBoxName_ItemCheck(
   Object* sender,
   ItemCheckEventArgs* e
);
[JScript]
private CheckedListBoxName_ItemCheck(
   sender : Object,
   e : ItemCheckEventArgs
);

Parameters

sender
The source of the event.
e
An ItemCheckEventArgs that contains the event data.

See Also

CheckedListBox Class | CheckedListBox MembersTopic | System.WinForms Namespace