ListViewVirtualItemsSelectionRangeChangedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the VirtualItemsSelectionRangeChanged event.
- C#
- VB.NET
public class ListViewVirtualItemsSelectionRangeChangedEventArgs : EventArgs
Public Class ListViewVirtualItemsSelectionRangeChangedEventArgs
Inherits EventArgs
Constructors
ListViewVirtualItemsSelectionRangeChangedEventArgs(startIndex, endIndex, isSelected)
Initializes a new instance of the ListViewVirtualItemsSelectionRangeChangedEventArgs class.
| Name | Type | Description |
|---|---|---|
| startIndex | Int32 | The index of the first item in the range that has changed. |
| endIndex | Int32 | The index of the last item in the range that has changed. |
| isSelected | Boolean | true to indicate the items are selected; false to indicate the items are deselected. |
Throws:
- ArgumentException startIndex is larger than endIndex..
Properties
EndIndex
Int32: Returns the index for the last item in the range of items whose selection state has changed.
IsSelected
Boolean: Returns a value indicating whether the range of items is selected.
StartIndex
Int32: Returns the index for the first item in the range of items whose selection state has changed.
Used By
| Name | Description |
|---|---|
| ListViewVirtualItemsSelectionRangeChangedEventHandler | Represents the method that will handle the VirtualItemsSelectionRangeChanged event of a ListView. |