Skip to main content
Version: 3.5

ListViewVirtualItemsSelectionRangeChangedEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the VirtualItemsSelectionRangeChanged event.

public class ListViewVirtualItemsSelectionRangeChangedEventArgs : EventArgs

Constructors

Instance memberListViewVirtualItemsSelectionRangeChangedEventArgs(startIndex, endIndex, isSelected)

Initializes a new instance of the ListViewVirtualItemsSelectionRangeChangedEventArgs class.

NameTypeDescription
startIndexInt32The index of the first item in the range that has changed.
endIndexInt32The index of the last item in the range that has changed.
isSelectedBooleantrue to indicate the items are selected; false to indicate the items are deselected.

Throws:

Properties

Instance memberEndIndex

Int32: Returns the index for the last item in the range of items whose selection state has changed.

Instance memberIsSelected

Boolean: Returns a value indicating whether the range of items is selected.

Instance memberStartIndex

Int32: Returns the index for the first item in the range of items whose selection state has changed.

Used By

NameDescription
ListViewVirtualItemsSelectionRangeChangedEventHandlerRepresents the method that will handle the VirtualItemsSelectionRangeChanged event of a ListView.