Link Search Menu Expand Document

Events

The following events are defined in the ListViewItem class.

Name Description
Clicked Occurs when clicking an item
DoubleClicked Occurs when double-clicking an item
RClicked Occurs when right-clicking on an item
Touch Occurs when the item selection status changes

Precautions when referring to selection items

In the handler of the event that occurred in the ListViewItem class, do not use the Value property of the parent object ListView class to refer to the selected item number. (The selected item number may not be reflected.)

For the selected item number, refer to the Index property (subscript of the array) of the From property (ListViewItem object) of the Event object passed as an argument of the event handler. For the selected state of the item, refer to the Selected property from the From property.