'Declaration
<SRCategoryAttribute("CatBehavior")> <SRDescriptionAttribute("ListViewVirtualItemsSelectionRangeChangedDescr")> Public Event VirtualItemsSelectionRangeChanged As System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler
'Usage
Dim instance As NListView Dim handler As System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler AddHandler instance.VirtualItemsSelectionRangeChanged, handler
[SRCategory("CatBehavior")] [SRDescription("ListViewVirtualItemsSelectionRangeChangedDescr")] public event System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler VirtualItemsSelectionRangeChanged
Event Data
The event handler receives an argument of type System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs containing data related to this event. The following ListViewVirtualItemsSelectionRangeChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
EndIndex | Gets the index for the last item in the range of items whose selection state has changed |
IsSelected | Gets a value indicating whether the range of items is selected. |
StartIndex | Gets the index for the first item in the range of items whose selection state has changed. |
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