Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ListViewVirtualItemsSelectionRangeChangedEventArgs Constructor (Int32, Int32, Boolean)

 

Initializes a new instance of the ListViewVirtualItemsSelectionRangeChangedEventArgs class.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
ListViewVirtualItemsSelectionRangeChangedEventArgs(
	int startIndex,
	int endIndex,
	bool isSelected
)

Parameters

startIndex
Type: System::Int32

The index of the first item in the range that has changed.

endIndex
Type: System::Int32

The index of the last item in the range that has changed.

isSelected
Type: System::Boolean

true to indicate the items are selected; false to indicate the items are deselected.

Exception Condition
ArgumentException

startIndex is larger than endIndex.

The ListViewVirtualItemsSelectionRangeChangedEventArgs occurs when items are changed from selected to deselected, and deselected to selected. The isSelected parameter indicates the current state of the range of items.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft