ItemCheckEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the ItemCheck event of a CheckedListBox or ListView control.
- C#
- VB.NET
public delegate void ItemCheckEventHandler(Object sender, ItemCheckEventArgs e)
Public Delegate Sub ItemCheckEventHandler(ByVal sender As [Object], ByVal e As ItemCheckEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | ItemCheckEventArgs | An ItemCheckEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| CheckedListBox.ItemCheck | Fired when the checked state of an item changes. |
| CheckedListBox.AfterItemCheck | Fired after the checked state of an item changes. |
| ListView.ItemCheck | Fired when the check state of an item changes. |