ItemSelectionChangedEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the ItemSelectionChanged event.
- C#
- VB.NET
public class ItemSelectionChangedEventArgs : EventArgs
Public Class ItemSelectionChangedEventArgs
Inherits EventArgs
Constructors
ItemSelectionChangedEventArgs(item, itemIndex, isSelected)
Initializes a new instance of the ItemSelectionChangedEventArgs class.
| Name | Type | Description |
|---|---|---|
| item | ListViewItem | The ListViewItem whose selection state has changed. |
| itemIndex | Int32 | The index of the ListViewItem whose selection state has changed. |
| isSelected | Boolean | true to indicate the item's state has changed to selected; false to indicate the item's state has changed to deselected. |
Properties
IsSelected
Boolean: Returns a value indicating whether the item's state has changed to selected.
Item
ListViewItem: Returns the item whose selection state has changed.
ItemIndex
Int32: Returns the index of the item whose selection state has changed.
Used By
| Name | Description |
|---|---|
| ItemSelectionChangedEventHandler | Represents the method that will handle the ItemSelectionChanged event of a ListView. |