'Declaration
<SRCategoryAttribute("CatBehavior")> <SRDescriptionAttribute("ListViewItemCheckedDescr")> Public Event ItemChecked As System.Windows.Forms.ItemCheckedEventHandler
'Usage
Dim instance As NListView Dim handler As System.Windows.Forms.ItemCheckedEventHandler AddHandler instance.ItemChecked, handler
[SRCategory("CatBehavior")] [SRDescription("ListViewItemCheckedDescr")] public event System.Windows.Forms.ItemCheckedEventHandler ItemChecked
Event Data
The event handler receives an argument of type System.Windows.Forms.ItemCheckedEventArgs containing data related to this event. The following ItemCheckedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Item | Gets the System.Windows.Forms.ListViewItem whose checked state is changing. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also