Skip to main content
Version: 3.5

ItemSelectionChangedEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the ItemSelectionChanged event.

public class ItemSelectionChangedEventArgs : EventArgs

Constructors

Instance memberItemSelectionChangedEventArgs(item, itemIndex, isSelected)

Initializes a new instance of the ItemSelectionChangedEventArgs class.

NameTypeDescription
itemListViewItemThe ListViewItem whose selection state has changed.
itemIndexInt32The index of the ListViewItem whose selection state has changed.
isSelectedBooleantrue to indicate the item's state has changed to selected; false to indicate the item's state has changed to deselected.

Properties

Instance memberIsSelected

Boolean: Returns a value indicating whether the item's state has changed to selected.

Instance memberItem

ListViewItem: Returns the item whose selection state has changed.

Instance memberItemIndex

Int32: Returns the index of the item whose selection state has changed.

Used By

NameDescription
ItemSelectionChangedEventHandlerRepresents the method that will handle the ItemSelectionChanged event of a ListView.